@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.preloader-page {
    --page-bg: #0d0323;
    --item-bg: #190a38;
    --text-color: #291456;
    position: fixed;
    top: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    left: 0;
    background-color: var(--page-bg);
    z-index: 90050
}

.preloader-page__info-icon, .preloader-page__messenger, .preloader-page__sidebar {
    display: none
}

.preloader-page__header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(180deg, #13052f, #1a083d)
}

.preloader-page__logo {
    width: auto;
    height: 21px
}

.preloader-page__logo--mobile {
    display: flex
}

.preloader-page__search {
    display: none
}

.preloader-page__info {
    justify-content: flex-end;
    flex: 1;
    margin-left: auto
}

.preloader-page__info, .preloader-page__info-btns {
    display: flex;
    align-items: center;
    gap: 8px
}

.preloader-page__info-circle {
    width: 24px;
    height: 24px;
    background-color: var(--text-color);
    border-radius: 50%;
    margin-right: 24px
}

.preloader-page__info-btn {
    width: 89px;
    height: 36px;
    background-color: var(--text-color);
    border-radius: 100px
}

.preloader-page__info-btn:last-child {
    width: 81px
}

.preloader-page__main {
    padding: 0 16px
}

.preloader-page__center, .preloader-page__main {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.preloader-page__slider {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 -16px
}

.preloader-page__slide {
    display: flex;
    align-items: center
}

.preloader-page__slide-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: 258px;
    background: linear-gradient(180deg, var(--item-bg), rgba(25, 10, 56, 0));
    padding: 16px
}

.preloader-page__slide-item-tag {
    height: 20px;
    width: 115px;
    border-radius: 100px;
    background: var(--text-color)
}

.preloader-page__slide-item-title {
    border-radius: 12px;
    height: 48px;
    width: 205px;
    background: var(--text-color)
}

.preloader-page__slide-item-caption {
    border-radius: 12px;
    height: 20px;
    width: 126px;
    background: var(--text-color)
}

.preloader-page__slide-item-btn {
    margin-top: auto;
    width: 74px;
    height: 36px;
    background: var(--text-color);
    border-radius: 100px
}

.preloader-page__slides {
    display: none
}

.preloader-page__slider-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.preloader-page__slider-item {
    width: 12px;
    height: 2px;
    border-radius: 22px;
    background: hsla(0, 0%, 100%, .2)
}

.preloader-page__slider-item:nth-child(2) {
    width: 30px
}

.preloader-page__divider {
    height: 40px;
    background: linear-gradient(180deg, #1d1041, #2b1e48)
}

.preloader-page__banners {
    display: none
}

.preloader-page__banners-slider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 -16px;
    padding: 0 16px;
    overflow: hidden
}

.preloader-page__banner {
    min-width: 236px;
    max-width: 236px;
    height: 70px;
    border-radius: 12px;
    background-color: var(--item-bg);
    flex-shrink: 0
}

.preloader-page__games {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.preloader-page__games--desktop {
    display: none
}

.preloader-page__games-nav {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.preloader-page__games-nav-item {
    width: 122px;
    height: 36px;
    border-radius: 12px;
    background-color: var(--item-bg)
}

.preloader-page__games-nav-item:first-child {
    width: 118px
}

.preloader-page__games-nav-item:last-child {
    border-radius: 100px
}

.preloader-page__games-content {
    width: 100%;
    min-width: 296px;
    height: 232px;
    background-color: var(--item-bg);
    border-radius: 16px
}

.preloader-page__game-wr {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 -16px;
    padding: 0 16px;
    overflow: hidden
}

.preloader-page__game {
    display: flex;
    align-items: center;
    gap: 12px
}

.preloader-page__game-item {
    min-width: 154px;
    width: 100%;
    height: 104px;
    background-color: var(--item-bg);
    border-radius: 8px
}

@media (min-width: 640px) {
    .preloader-page__header {
        padding: 12px 24px
    }

    .preloader-page__logo {
        height: 30px
    }

    .preloader-page__info-btn {
        width: 89px
    }

    .preloader-page__info-circle {
        width: 32px;
        height: 32px
    }

    .preloader-page__main {
        padding: 0 24px;
        gap: 24px
    }

    .preloader-page__center {
        gap: 24px
    }

    .preloader-page__slider {
        margin: 0 -24px
    }

    .preloader-page__slide {
        display: flex;
        gap: 20px;
        overflow: hidden
    }

    .preloader-page__slide-item {
        padding: 24px 26px;
        height: 417px;
        gap: 16px
    }

    .preloader-page__slide-item-tag {
        height: 24px;
        width: 136px
    }

    .preloader-page__slide-item-title {
        width: 465px;
        height: 72px
    }

    .preloader-page__slide-item-caption {
        width: 279px;
        height: 24px
    }

    .preloader-page__slide-item-btn {
        height: 48px;
        width: 93px
    }

    .preloader-page__slider-pagination {
        gap: 10px
    }

    .preloader-page__slider-item {
        width: 12px;
        height: 2px
    }

    .preloader-page__slider-item:nth-child(2) {
        width: 30px
    }

    .preloader-page__banners-slider {
        margin: 0 -24px;
        padding: 12px 24px 0
    }

    .preloader-page__banner {
        min-width: 260px;
        max-width: 260px;
        height: 80px
    }

    .preloader-page__games {
        gap: 24px
    }

    .preloader-page__games-nav-item {
        width: 122px;
        height: 36px
    }

    .preloader-page__games-nav-item:first-child {
        width: 138px
    }

    .preloader-page__game-wr {
        margin: 0 -24px;
        padding: 0 24px
    }

    .preloader-page__game {
        justify-content: flex-start;
        gap: 16px
    }

    .preloader-page__game-item {
        min-width: 190px;
        height: 128px
    }
}

@media (min-width: 1140px) {
    .preloader-page__header {
        padding: 4px 24px;
        background: linear-gradient(180deg, #1a083e, #13052f)
    }

    .preloader-page__navigation {
        width: 100%;
        height: 32px;
        background: linear-gradient(180deg, #1d1041, #2b1e48)
    }

    .preloader-page__search {
        display: flex;
        align-items: center;
        height: 40px;
        width: 276px;
        background-color: var(--text-color);
        border-radius: 100px;
        margin-left: 16px
    }

    .preloader-page__info-icons {
        display: flex;
        align-items: center;
        gap: 8px
    }

    .preloader-page__info-icon {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--text-color)
    }

    .preloader-page__messenger {
        display: none
    }

    .preloader-page__info-btn {
        order: 1
    }

    .preloader-page__info {
        margin-left: 40px
    }

    .preloader-page__info-block {
        width: 176px;
        border-radius: 50px 40px 40px 50px
    }

    .preloader-page__info-circle {
        width: 24px;
        height: 24px;
        margin-left: 4px;
        margin-right: 20px
    }

    .preloader-page__main {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px 16px
    }

    .preloader-page__center {
        width: calc(100% - 352px)
    }

    .preloader-page__sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 336px
    }

    .preloader-page__slider {
        gap: 32px;
        flex: 1 1 auto
    }

    .preloader-page__slide {
        position: relative
    }

    .preloader-page__slide-item {
        padding: 20px 60px 32px 63px;
        height: 377px;
        overflow: hidden
    }

    .preloader-page__slide-item-tag {
        width: 136px;
        height: 24px
    }

    .preloader-page__slide-item-title {
        width: 450px;
        height: 75px
    }

    .preloader-page__slide-item-caption {
        width: 242px;
        height: 24px
    }

    .preloader-page__slider-pagination {
        display: none
    }

    .preloader-page__slides {
        position: absolute;
        top: 76px;
        right: 63px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 190px
    }

    .preloader-page__slides:after {
        content: "";
        position: absolute;
        bottom: 50px;
        left: 0;
        right: 0;
        width: 190px;
        height: 124px;
        background: linear-gradient(180deg, rgba(15, 4, 38, 0), #0e0423)
    }

    .preloader-page__slides-item {
        position: relative;
        padding: 8px 12px;
        width: 190px;
        height: 112px;
        border-radius: 12px;
        background: var(--item-bg)
    }

    .preloader-page__slides-title {
        width: 105px;
        margin-bottom: 4px
    }

    .preloader-page__slides-subtitle, .preloader-page__slides-title {
        height: 20px;
        border-radius: 33px;
        background-color: var(--text-color)
    }

    .preloader-page__slides-subtitle {
        width: 69px
    }

    .preloader-page__slides-caption {
        position: absolute !important;
        top: 8px;
        right: 12px;
        width: 34px;
        height: 20px;
        border-radius: 33px;
        background: #361c6b
    }

    .preloader-page__banners-slider, .preloader-page__divider {
        display: none
    }

    .preloader-page__banners {
        display: flex
    }

    .preloader-page__card {
        display: flex;
        align-items: center;
        overflow: hidden;
        width: 100%;
        gap: 16px
    }

    .preloader-page__card-item {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: calc(33.33333% - 8px);
        background: var(--item-bg);
        border-radius: 12px;
        padding: 20px;
        height: 137px
    }

    .preloader-page__card-item-caption {
        display: none
    }

    .preloader-page__card-item-block {
        width: 181px;
        height: 28px;
        border-radius: 33px;
        background-color: var(--text-color)
    }

    .preloader-page__card-item-btn {
        width: 73px;
        height: 36px;
        border-radius: 100px;
        background-color: var(--text-color)
    }

    .preloader-page__games {
        display: none
    }

    .preloader-page__game {
        gap: 20px
    }

    .preloader-page__games--desktop {
        display: flex
    }

    .preloader-page__games-content {
        height: 648px
    }

    .preloader-page__jackpot {
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        background: var(--item-bg);
        padding: 20px
    }

    .preloader-page__jackpot-item-title {
        width: 181px;
        height: 14px;
        border-radius: 33px;
        background: var(--text-color);
        margin-bottom: 6px
    }

    .preloader-page__jackpot-item-subtitle {
        border-radius: 33px;
        background: var(--text-color);
        width: 296px;
        height: 25px;
        margin-bottom: 16px
    }

    .preloader-page__jackpot-item-btn {
        width: 73px;
        height: 36px;
        border-radius: 100px;
        background: var(--text-color)
    }

    .preloader-page__winners {
        display: flex;
        flex-direction: column
    }

    .preloader-page__winners-tab {
        height: 54px;
        width: 168px;
        border-radius: 12px 12px 0 0;
        background: var(--item-bg)
    }

    .preloader-page__winners-content {
        border-radius: 0 10px 10px 10px;
        background: var(--item-bg);
        min-height: 600px
    }
}

@media (min-width: 1628px) {
    .preloader-page__main {
        padding: 0 32px;
        gap: 32px 24px
    }

    .preloader-page__center {
        gap: 32px
    }

    .preloader-page__header {
        padding: 14px 32px
    }

    .preloader-page__logo {
        height: 36px
    }

    .preloader-page__search {
        margin-left: 24px
    }

    .preloader-page__info {
        gap: 20px
    }

    .preloader-page__info-btns {
        order: -1
    }

    .preloader-page__info-btn {
        width: 188px;
        height: 52px
    }

    .preloader-page__info-btn:last-child {
        width: 207px
    }

    .preloader-page__info-icon {
        height: 52px;
        width: 52px
    }

    .preloader-page__info-circle {
        width: 32px;
        height: 32px
    }

    .preloader-page__messenger {
        display: block;
        order: -2
    }

    .preloader-page__navigation {
        height: 44px
    }

    .preloader-page__center {
        width: calc(100% - 470px)
    }

    .preloader-page__sidebar {
        width: 446px
    }

    .preloader-page__slider {
        margin: 0 -32px
    }

    .preloader-page__slide-item {
        padding: 40px 115px 52px 100px;
        height: 554px;
        gap: 16px
    }

    .preloader-page__slide-item-tag {
        width: 151px;
        height: 28px
    }

    .preloader-page__slide-item-title {
        width: 683px;
        height: 112px
    }

    .preloader-page__slide-item-caption {
        width: 402px;
        height: 32px
    }

    .preloader-page__slide-item-btn {
        width: 142px;
        height: 80px
    }

    .preloader-page__slides {
        top: 138px;
        right: 115px;
        width: 276px;
        gap: 16px
    }

    .preloader-page__slides-item {
        padding: 16px 20px;
        width: 276px;
        height: 160px
    }

    .preloader-page__slides-title {
        width: 160px;
        height: 24px;
        margin-bottom: 6px
    }

    .preloader-page__slides-subtitle {
        width: 105px;
        height: 24px
    }

    .preloader-page__slides-caption {
        top: 16px;
        right: 20px;
        width: 34px;
        height: 24px
    }

    .preloader-page__slides:after {
        width: 276px;
        height: 210px;
        bottom: 96px
    }

    .preloader-page__card {
        gap: 24px
    }

    .preloader-page__card-item {
        padding: 28px 40px;
        height: 200px;
        gap: 8px
    }

    .preloader-page__card-item-block {
        width: 227px;
        height: 28px
    }

    .preloader-page__card-item-caption {
        display: block;
        width: 119px;
        height: 28px;
        border-radius: 33px;
        background: var(--text-color)
    }

    .preloader-page__card-item-btn {
        margin-top: auto;
        width: 92px;
        height: 48px
    }

    .preloader-page__jackpot {
        padding: 28px 40px;
        height: 200px
    }

    .preloader-page__jackpot-item-title {
        width: 227px;
        height: 28px;
        margin-bottom: 8px
    }

    .preloader-page__jackpot-item-subtitle {
        width: 366px;
        height: 38px
    }

    .preloader-page__jackpot-item-btn {
        margin-top: auto;
        width: 92px;
        height: 48px
    }

    .preloader-page__winners-tab {
        height: 72px;
        width: 223px
    }
}

.preloader-page__animation {
    position: relative;
    overflow: hidden
}

.preloader-page__animation:before {
    content: "";
    width: 100%;
    height: 200%;
    position: absolute;
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff 52.81%, hsla(0, 0%, 100%, 0));
    opacity: .2;
    animation: blickPreloader 2s ease-in-out infinite
}

@keyframes blickPreloader {
    0% {
        transform: translate(-200%, -50%) skewX(-45deg)
    }
    to {
        transform: translate(200%, -50%) skewX(-45deg)
    }
}

.icon {
    display: inline-block;
    vertical-align: baseline;
    transition: color .2s ease-out
}

@keyframes show-bg {
    0% {
        opacity: 0;
        visibility: hidden
    }
    to {
        opacity: 1;
        visibility: visible
    }
}

@keyframes hide-bg {
    0% {
        opacity: 1;
        visibility: visible
    }
    to {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 185;
        transform: rotate(0)
    }
    50% {
        stroke-dashoffset: 46.25;
        transform: rotate(160deg)
    }
    to {
        stroke-dashoffset: 185;
        transform: rotate(2turn)
    }
}

.btn {
    position: relative;
    background-color: var(--buttons-primary-default);
    color: var(--buttons-primary-text);
    border: none;
    padding: var(--universal-spacings-m) var(--universal-spacings-2xl);
    height: 48px;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-align: center;
    border-radius: var(--roundings-circle);
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    transition: all .2s ease-out
}

.btn__inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: center
}

.top-bar__search-btn .btn__inner {
    overflow: hidden
}

.btn--icon {
    gap: var(--universal-spacings-s)
}

.btn--full {
    width: 100%
}

.btn--circle .btn__icon {
    width: 14px;
    height: auto
}

.btn__icon.btn__icon--arrow-right {
    width: 16px;
    height: 16px;
    padding: 1px 3px 1px 5px
}

.btn--log-in {
    padding: var(--universal-spacings-s) var(--universal-spacings-xl);
    height: 36px;
    border: 1px solid var(--buttons-secondary-default);
    background-color: transparent;
    color: var(--buttons-secondary-text-default);
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase
}

.btn--log-in:active {
    border: 1px solid var(--buttons-secondary-hover)
}

@media (max-width: 639px) {
    .btn--log-in {
        padding: var(--universal-spacings-s) var(--universal-spacings-m)
    }
}

@media (min-width: 1628px) {
    .btn--log-in {
        padding: var(--universal-spacings-m) var(--universal-spacings-2xl);
        height: 48px;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        text-transform: uppercase
    }
}

.btn--sign-up {
    padding: var(--universal-spacings-s) var(--universal-spacings-xl);
    height: 36px;
    border-radius: var(--roundings-circle);
    background-color: var(--buttons-accent-a-default);
    color: var(--buttons-accent-a-text-default);
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase
}

.btn--sign-up:active {
    background-color: var(--buttons-accent-a-hover);
    color: var(--buttons-accent-a-text-hover)
}

@media (max-width: 639px) {
    .btn--sign-up {
        padding: var(--universal-spacings-s) var(--universal-spacings-m)
    }
}

@media (min-width: 1628px) {
    .btn--sign-up {
        padding: var(--universal-spacings-m) var(--universal-spacings-2xl);
        height: 48px;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        text-transform: uppercase
    }
}

.btn--circle {
    width: 36px;
    height: 36px;
    border-radius: var(--roundings-circle);
    background: var(--buttons-primary-hover);
    padding: 0;
    color: var(--icons-invert)
}

.promo-card__btn-read-more {
    z-index: 2;
    margin-top: auto
}

.promo-card--lg .promo-card__btn-read-more {
    padding: 0 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase
}

.support-widget {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 35
}

@media (max-width: 1139px) {
    .support-widget {
        right: 16px;
        bottom: 92px
    }
}

@media (min-width: 1140px) {
    .support-widget {
        right: 28px;
        bottom: 86px
    }
}

@media (min-width: 1921px) {
    .support-widget {
        right: calc(50vw - 940px)
    }
}

.support-widget__wr {
    display: flex;
    align-items: center;
    justify-content: center
}

.support-widget__icon {
    width: 38px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

.support-widget:hover .support-widget__icon {
    display: none
}

.support-widget__text {
    display: none;
    color: var(--text-text);
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

.support-widget:hover .support-widget__text {
    display: block
}

@font-face {
    font-family: Jost;
    src: url(../../../assets/462607/fonts/Jost-Regular.3ccf1898.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Jost;
    src: url(../../../assets/462607/fonts/Jost-Medium.7e1fece3.ttf) format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Jost;
    src: url(../../../assets/462607/fonts/Jost-SemiBold.9f5eb520.ttf) format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Jost;
    src: url(../../../assets/462607/fonts/Jost-Bold.b7264d92.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Jost;
    src: url(../../../assets/462607/fonts/Jost-ExtraBold.1e76776b.ttf) format("truetype");
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: Jost;
    src: url(../../../assets/462607/fonts/Jost-Black.a0fa30ea.ttf) format("truetype");
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: Pacifico;
    src: url(../../../assets/462607/fonts/Pacifico-Regular.85bb2d0e.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

html {
    font-family: sans-serif
}

body, html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    font-size: 100%;
    margin: 0
}

body, body * {
    box-sizing: border-box
}

body * {
    -webkit-tap-highlight-color: transparent
}

article, aside, figcaption, figure, header, main, menu, nav, section {
    display: block
}

 video {
    display: inline-block;
    vertical-align: baseline
}

[hidden] {
    display: none
}

a {
    background-color: transparent
}

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

a[tabindex] {
    cursor: pointer
}

 strong {
    font-weight: 600
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    text-transform: none
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

svg {
    pointer-events: none
}

figure {
    margin: 1em 40px
}

code {
    font-family: monospace;
    font-size: 1em
}

button {
    color: inherit;
    font: inherit;
    margin: 0
}

button:focus {
    outline: none
}

button {
    overflow: visible
}

button:focus {
    outline: none
}

button {
    text-transform: none
}

button {
    -webkit-appearance: button;
    cursor: pointer
}

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

table {
    border-collapse: collapse;
    border-spacing: 0
}

td {
    padding: 0
}

ol, ul {
    list-style: none
}

ol, p, ul {
    padding: 0;
    margin: 0
}

:root {
    --white: #fff;
    --white-500: #f8f8f8;
    --white-p-80: hsla(0, 0%, 100%, 0.8);
    --white-p-70: hsla(0, 0%, 100%, 0.7);
    --white-p-60: hsla(0, 0%, 100%, 0.6);
    --white-p-50: hsla(0, 0%, 100%, 0.5);
    --white-p-40: hsla(0, 0%, 100%, 0.4);
    --white-p-30: hsla(0, 0%, 100%, 0.3);
    --white-p-20: hsla(0, 0%, 100%, 0.2);
    --white-p-10: hsla(0, 0%, 100%, 0.1);
    --white-p-0: hsla(0, 0%, 100%, 0);
    --white-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0), var(--white));
    --white-gradient-search: linear-gradient(90deg, hsla(0, 0%, 100%, 0), var(--white));
    --white-gradient-search-left: linear-gradient(-90deg, hsla(0, 0%, 100%, 0), var(--white));
    --dark-gradient-search: linear-gradient(90deg, rgba(20, 34, 69, 0), #142245);
    --dark-gradient-search-left: linear-gradient(-90deg, rgba(20, 34, 69, 0), #142245);
    --dark-gradient-button-more: linear-gradient(180deg, rgba(25, 10, 56, 0), #190a38);
    --rgadient-random-card: radial-gradient(67.64% 91.91% at 50% 93.13%, rgba(219, 36, 255, 0.5) 0%, rgba(183, 0, 255, 0) 94.04%), var(--backgrounds-a);
    --skeleton-gradient: linear-gradient(90deg, hsla(0, 0%, 100%, 0), var(--white) 52.81%, hsla(0, 0%, 100%, 0));
    --black-500: #000;
    --black-500-p-50: rgba(0, 0, 0, 0.5);
    --black-500-p-30: rgba(0, 0, 0, 0.3);
    --black-500-p-25: rgba(0, 0, 0, 0.25);
    --black-500-p-20: rgba(0, 0, 0, 0.2);
    --black-500-p-10: rgba(0, 0, 0, 0.1);
    --black-shadow-m: 0 4px 24px 0 var(--colors-base-black);
    --black-shadow-l: 0 4px 32px 0 var(--colors-base-black);
    --black-shadow-xl: 0 4px 52px 0 var(--colors-base-black);
    --tag-shadow: 0 2px 45.5px 0 rgba(236, 199, 105, 0.3);
    --gray-500: #38445b;
    --gray-500-p-60: rgba(56, 68, 91, 0.6);
    --gray-500-p-40: rgba(56, 68, 91, 0.4);
    --gray-500-p-20: rgba(56, 68, 91, 0.2);
    --gray-500-p-30: rgba(56, 68, 91, 0.3);
    --gray-500-p-15: rgba(56, 68, 91, 0.15);
    --gray-500-p-12: rgba(56, 68, 91, 0.12);
    --gray-500-p-08: rgba(56, 68, 91, 0.08);
    --gray-500-p-6: rgba(56, 68, 91, 0.06);
    --gray-400: #7c879d;
    --gray-400-p-50: rgba(124, 135, 157, 0.5);
    --gray-shadow: rgba(65, 65, 65, 0.15);
    --gray-300: #05060a;
    --orange-600: #dc4200;
    --orange-500: #ff4c00;
    --orange-500-p-20: rgba(255, 76, 0, 0.2);
    --orange-500-p-10: rgba(255, 76, 0, 0.1);
    --orange-300: #ff5c16;
    --oragne-radial-gradient: radial-gradient(100% 100% at 50% 100%, #ff9737 28.9%, #ff0f00 100%);
    --oragne-linear-gradient: linear-gradient(270deg, rgba(255, 195, 106, 0), #ffc56d, rgba(255, 193, 99, 0));
    --orange-75: rgba(223, 126, 85, 0.75);
    --blue-500: #007afe;
    --blue-500-p-30: rgba(0, 122, 254, 0.3);
    --blue-500-p-20: rgba(0, 122, 254, 0.2);
    --blue-500-p-10: rgba(0, 122, 254, 0.1);
    --blue-500-p-8: rgba(0, 122, 254, 0.08);
    --blue-600: #d7f5ff;
    --blue-700: #1a73e9;
    --blue-dark-500: #06112e;
    --blue-dark-500-gradient: linear-gradient(180deg, rgba(6, 17, 46, 0), var(--blue-dark-500));
    --blue-dark-450: #101c3a;
    --blue-dark-450-gradient: linear-gradient(180deg, rgba(16, 28, 58, 0), var(--blue-dark-450));
    --blue-dark-400: #142245;
    --blue-dark-300: #192b59;
    --blue-dark-300-gradient: linear-gradient(180deg, rgba(36, 44, 77, 0), var(--blue-dark-300));
    --blue-dark-opacity: rgba(31, 147, 255, 0.08);
    --blue-radial-gradient: radial-gradient(135.26% 135.23% at 49.59% 135.23%, #44d2ff 28.9%, #006ee4 100%, #005abb 0);
    --blue: #0019ff;
    --blue-2: #0013c6;
    --blue-dark-gradient-search: linear-gradient(270deg, var(--blue-dark-400) 11.64%, rgba(20, 34, 69, 0) 64.29%);
    --pink500: #ff01f5;
    --yellow-500: #fff27e;
    --green-500: #01c095;
    --green-alt-500: #00b929;
    --red-500: #ff2448;
    --red-500-p-6: rgba(255, 36, 72, 0.06);
    --red-500-p-60: rgba(255, 36, 72, 0.6);
    --red: #eb001b;
    --red-2: #ca0017;
    --yandex-bg: #ec1717;
    --mailru-bg: #1b6bed;
    --vkontakte-bg: #1b7ae8;
    --telegram-bg: #34aadf;
    --odnoklassniki-bg: #f0972f;
    --yahoo-bg: #5f01d1;
    --colors-base-100: #190a38;
    --colors-base-200: #291456;
    --colors-base-300: #361c6b;
    --colors-base-400: #442583;
    --colors-base-black: #0d0323;
    --colors-base-black-35: rgba(0, 0, 0, 0.35);
    --colors-base-black-50: rgba(0, 0, 0, 0.5);
    --colors-base-black-60: rgba(0, 0, 0, 0.6);
    --colors-base-black-70: rgba(0, 0, 0, 0.7);
    --colors-base-black-80: rgba(0, 0, 0, 0.8);
    --colors-base-black-90: rgba(0, 0, 0, 0.9);
    --colors-base-white: #fff;
    --colors-base-white-20: hsla(0, 0%, 100%, 0.2);
    --colors-base-white-40: hsla(0, 0%, 100%, 0.4);
    --colors-base-white-5: hsla(0, 0%, 100%, 0.05);
    --colors-base-white-60: hsla(0, 0%, 100%, 0.6);
    --colors-base-white-80: hsla(0, 0%, 100%, 0.8);
    --colors-base-gray: #d9d9d9;
    --colors-global-accent-b-1: #acff00;
    --colors-global-accent-b-2: #c2ff44;
    --colors-global-accent-b-3: #14341d;
    --colors-global-primary-1: #db53ff;
    --colors-global-primary-1-8: rgba(219, 83, 255, 0.08);
    --colors-global-primary-1-80: rgba(219, 83, 255, 0.8);
    --colors-global-primary-2-a: #ff5c00;
    --colors-global-primary-2-b: #ff881b;
    --colors-global-special-1: #ff003d;
    --colors-system-error: #ff003d;
    --colors-system-warning: #f90;
    --colors-system-success: #20ca4f;
    --colors-system-processing: #5ab7ec;
    --colors-secondary-dark-5: #868a8a;
    --colors-secondary: #868a8a;
    --colors-brand-a: #edb548;
    --colors-brand-b: #ff53d9;
    --colors-brand-c: #ff395d;
    --colors-brand-d: #0085ff;
    --colors-brand-e: #53e0ff;
    --colors-brand-f: #ffc700;
    --colors-brand-g: #61ff53;
    --colors-brand-h: #ff9153;
    --colors-brand-i: #654cff;
    --colors-brand-k: #db53ff;
    --backgrounds-a: var(--colors-base-black);
    --backgrounds-b: var(--colors-base-100);
    --backgrounds-c: var(--colors-base-200);
    --backgrounds-d: var(--colors-base-300);
    --backgrounds-e: var(--colors-base-400);
    --backgrounds-f: var(--colors-global-primary-1);
    --badges-live-background: var(--colors-base-black-70);
    --badges-live-icon: var(--colors-global-special-1);
    --badges-live-text: var(--colors-base-white);
    --badges-new-background: var(--colors-base-white);
    --badges-new-text: var(--colors-base-black);
    --badges-promoaction-background: var(--colors-base-black-70);
    --badges-promoaction-hover: var(--colors-base-200);
    --badges-rm-background: var(--colors-base-black-70);
    --badges-rm-text: var(--colors-global-accent-b-2);
    --badges-rtp-background: var(--colors-global-special-1);
    --badges-rtp-text: var(--colors-base-white);
    --borders-a: var(--colors-base-black);
    --borders-b: var(--colors-base-white-20);
    --borders-c: var(--colors-global-primary-1);
    --borders-d: var(--colors-base-white-60);
    --borders-e: var(--colors-base-white-80);
    --buttons-accent-a-default: var(--colors-global-accent-b-1);
    --buttons-accent-a-disable: var(--colors-base-400);
    --buttons-accent-a-hover: var(--colors-global-accent-b-2);
    --buttons-accent-a-text-default: var(--colors-base-black);
    --buttons-accent-a-text-hover: var(--colors-base-black);
    --buttons-accent-b-default: var(--colors-global-special-1);
    --buttons-accent-b-text: var(--colors-base-white);
    --buttons-primary-default: var(--colors-global-primary-2-a);
    --buttons-primary-disable: var(--colors-base-400);
    --buttons-primary-hover: var(--colors-global-primary-2-b);
    --buttons-primary-icon: var(--colors-base-black);
    --buttons-primary-text: var(--colors-base-white);
    --buttons-secondary-default: var(--colors-base-white-60);
    --buttons-secondary-disable: var(--colors-base-white-40);
    --buttons-secondary-hover: var(--colors-global-primary-1);
    --buttons-secondary-left-icon-default: var(--colors-base-white);
    --buttons-secondary-left-icon-disable: var(--colors-base-white-60);
    --buttons-secondary-right-icon-default: var(--colors-global-primary-1);
    --buttons-secondary-right-icon-disable: var(--colors-base-white-60);
    --buttons-secondary-text-default: var(--colors-base-white);
    --buttons-secondary-text-disable: var(--colors-base-white-60);
    --buttons-secondary-text-hover: var(--colors-base-white);
    --icons-invert: var(--colors-base-black);
    --icons-a: var(--colors-global-primary-1);
    --icons-b: var(--colors-base-white);
    --icons-c: var(--colors-base-white-80);
    --icons-d: var(--colors-base-white-60);
    --icons-e: var(--colors-global-accent-b-1);
    --links-a-default: var(--colors-global-primary-1);
    --links-a-hover: var(--colors-base-white);
    --links-b-default: var(--colors-base-white);
    --tabs-a-icon-default: var(--colors-global-primary-1);
    --tabs-a-icon-hover: var(--colors-global-primary-1-80);
    --tabs-a-text-default: var(--colors-base-white);
    --tabs-a-text-hover: var(--colors-base-white-80);
    --tabs-b-background-hover: var(--colors-base-black);
    --tabs-b-background-selected: var(--colors-base-black);
    --tabs-b-text-default: var(--colors-base-white-80);
    --tabs-b-text-hover: var(--colors-base-white-80);
    --tabs-b-text-selected: var(--colors-global-primary-1);
    --tabs-c-background-selected: var(--colors-base-100);
    --tabs-c-icon: var(--colors-global-primary-1);
    --tabs-c-text-default: var(--colors-base-white-60);
    --tabs-c-text-hover: var(--colors-base-white);
    --tabs-c-text-selected: var(--colors-base-white);
    --tabs-d-border-selected: var(--colors-global-primary-1);
    --tabs-d-text-default: var(--colors-base-white-60);
    --tabs-d-text-hover: var(--colors-base-white);
    --tabs-d-text-selected: var(--colors-base-white);
    --tabs-e-background-selected: var(--colors-base-400);
    --tabs-e-text-default: var(--colors-base-white-60);
    --tabs-e-text-hover: var(--colors-base-white);
    --tabs-e-text-selected: var(--colors-base-white);
    --text-accent-text: var(--colors-global-accent-b-1);
    --text-description-a: var(--colors-base-white-60);
    --text-description-b: var(--colors-base-white-80);
    --text-text: var(--colors-base-white);
    --text-text-invert: var(--colors-base-black);
    --text-main-text: var(--colors-global-primary-1);
    --btn-primary-puls: #ff8c21;
    --gradient-a: linear-gradient(180deg, #1a083e, #13052f);
    --gradient-b: linear-gradient(180deg, #13052f, #1a083d);
    --gradient-c: linear-gradient(180deg, #1d1041, #2b1e48);
    --main-banner-radial-gradient: radial-gradient(55.78% 91.3% at 50% 100%, rgba(244, 212, 131, 0.2) 0%, rgba(244, 212, 131, 0) 96.95%);
    --jackpot-gradient-mobile: radial-gradient(97.17% 100% at 50% 0%, rgba(172, 255, 0, 0.3) 0%, rgba(172, 255, 0, 0) 48.2%);
    --jackpot-gradient-tablet: radial-gradient(81.27% 100% at 50% 0%, rgba(172, 255, 0, 0.3) 7.08%, rgba(172, 255, 0, 0) 55.27%);
    --jackpot-gradient-laptop: radial-gradient(81.51% 100% at 50% 0%, rgba(172, 255, 0, 0.3) 1.33%, rgba(172, 255, 0, 0) 59.82%);
    --jackpot-gradient-big-screen: radial-gradient(58.79% 100% at 50% 0%, rgba(172, 255, 0, 0.3) 11.3%, rgba(172, 255, 0, 0) 82.56%);
    --bottom-menu-gradient: linear-gradient(180deg, #1a083e, #13052f);
    --buttons-primary-shadow: 0 4px 32px 0 var(--colors-base-white-20);
    --status-green-shadow: 0 2px 12px 0 rgba(31, 167, 69, 0.3);
    --gold-shadow: 0 4px 60px 0 rgba(244, 212, 131, 0.3);
    --gold: #f4d483;
    --brown-shadow: #9a6823;
    --avatar-blue: #53e0ff;
    --avatar-purple: #db53ff;
    --avatar-green: #61ff53;
    --avatar-yellow: #edb548;
    --orange-light-shadow: 0 4px 6px 0 rgba(255, 76, 0, 0.3);
    --green-light-shadow: 0 4px 12px 0 rgba(2, 182, 159, 0.7);
    --yellow-light-shadow: 0 3px 7px 0 rgba(255, 242, 126, 0.6);
    --red-light-shadow: 0 3px 7px 0 rgba(255, 36, 72, 0.6);
    --blue-light-shadow: 0 3px 7px 0 rgba(14, 92, 244, 0.6);
    --white-light-shadow: 0 4px 16px 0 var(--colors-base-white-20);
    --gray-hover-button-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    --light-gray-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
    --light-gray-shadow-2: 0 4px 7px 0 rgba(0, 0, 0, 0.1);
    --gray-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.15);
    --tab-bar-shadow: 0 -6px 28px 0 rgba(0, 0, 0, 0.15);
    --bottom-notify-shadow: 0 -6px 28px 0 rgba(0, 0, 0, 0.1);
    --small-gray-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    --drop-shadow: 0 11px 14px 0 rgba(0, 0, 0, 0.2);
    --drop-down-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.25);
    --drop-down-shadow2: 0 13px 15px 0 rgba(0, 0, 0, 0.25);
    --game-card--blur: blur(12px);
    --registration-background-blur: blur(16px);
    --real-winners-shadow: -16px 0 40px 0 rgba(56, 68, 91, 0.06);
    --big-notification-shadow: 0 -6px 28px 0 rgba(0, 0, 0, 0.1);
    --promocard: 0 5px 28px 0 rgba(0, 0, 0, 0.1);
    --content-shadow: 0 16px 40px 0 rgba(56, 68, 91, 0.06);
    --black-shadow-m: 0 4px 24px 0 rgba(0, 0, 0, 0.5);
    --inner-light-shadow: 0 2px 32px 0 var(--colors-global-primary-1) inset;
    --font_jost: "Jost", sans-serif;
    --font_pacifico: "Pacifico", sans-serif;
    --menu-burger-width: 84px;
    --menu-burger-width-opened: 256px;
    --bottom-menu-height: 72px;
    --bottom-sheet-max-width: 576px;
    --menu-burger-bottom-bar-hegiht: 68px;
    --main-container-max-width: 1516px;
    --game-sidebar-width: 300px;
    --game-sidebar-width-lg: 336px;
    --topbar-height-mob: 60px;
    --topbar-height-tablet: 64px;
    --topbar-height-desktop: 52px;
    --topbar-height-huge: 80px;
    --collections-menu-height-mobile: 40px;
    --collections-menu-height-desktop: 32px;
    --collections-menu-height-huge: 44px;
    --full-header-height-desktop: 84px;
    --full-header-height-huge: 124px;
    --promo-scale-size: 0.761;
    --lobby-container-min-width: 1000px;
    --lobby-container-max-width: 1100px;
    --bonus-stor-max-width: 1032px;
    --friends-and-referrals-max-width: 960px;
    --main-sidebar-width: 336px;
    --main-sidebar-width-lg: 446px;
    --roundings-xs: 6px;
    --roundings-m: 12px;
    --roundings-s: 12px;
    --roundings-l: 24px;
    --roundings-circle: 100px;
    --spacings-xs: 4px;
    --spacings-s: 6px;
    --spacings-m: 8px;
    --spacings-l: 12px;
    --spacings-xl: 12px;
    --spacings-2xl: 16px;
    --spacings-3xl: 24px;
    --universal-spacings-3xs: 2px;
    --universal-spacings-2xs: 4px;
    --universal-spacings-xs: 6px;
    --universal-spacings-s: 8px;
    --universal-spacings-m: 12px;
    --universal-spacings-l: 16px;
    --universal-spacings-xl: 20px;
    --universal-spacings-2xl: 24px;
    --universal-spacings-3xl: 32px;
    --universal-spacings-4xl: 40px;
    --universal-spacings-5xl: 58px;
    --universal-spacings-6xl: 64px;
    --game-cards-s-greed-width: 159px;
    --game-cards-s-greed-height: 106px;
    --game-cards-s-width: 121px;
    --game-cards-s-height: 82px;
    --game-cards-m-width: 128px;
    --game-cards-m-height: 86px;
    --game-cards-l-width: 154px;
    --game-cards-l-height: 104px;
    --game-cards-l-greed-width: 167px;
    --game-cards-l-greed-height: 113px;
    --game-cards-xl-width: 180px;
    --game-cards-xl-height: 120px
}

@media (min-width: 640px) {
    :root {
        --roundings-m: 16px;
        --spacings-xs: 6px;
        --spacings-s: 8px;
        --spacings-l: 12px;
        --spacings-m: 12px;
        --spacings-xl: 12px;
        --spacings-2xl: 24px;
        --spacings-3xl: 32px;
        --game-cards-m-width: 182px;
        --game-cards-m-height: 124px;
        --game-cards-l-width: 190px;
        --game-cards-l-height: 128px;
        --game-cards-l-greed-width: 143px;
        --game-cards-l-greed-height: 97px;
        --game-cards-xl-width: 240px;
        --game-cards-xl-height: 161px
    }
}

@media (min-width: 1140px) {
    :root {
        --spacings-xs: 4px;
        --spacings-s: 8px;
        --spacings-l: 12px;
        --spacings-m: 12px;
        --spacings-xl: 16px;
        --spacings-2xl: 24px;
        --spacings-3xl: 32px;
        --game-cards-m-width: 120px;
        --game-cards-m-height: 81px;
        --game-cards-l-width: 190px;
        --game-cards-l-height: 128px;
        --game-cards-l-greed-height: 88px;
        --game-cards-l-greed-width: 131px;
        --game-cards-xl-width: 240px;
        --game-cards-xl-height: 161px
    }
}

@media (min-width: 1628px) {
    :root {
        --roundings-m: 20px;
        --spacings-xs: 8px;
        --spacings-s: 12px;
        --spacings-m: 16px;
        --spacings-l: 20px;
        --spacings-xl: 24px;
        --spacings-2xl: 32px;
        --spacings-3xl: 40px;
        --game-cards-s-width: 121px;
        --game-cards-s-height: 82px;
        --game-cards-m-width: 160px;
        --game-cards-m-height: 109px;
        --game-cards-l-width: 240px;
        --game-cards-l-height: 160px;
        --game-cards-l-greed-width: 184px;
        --game-cards-l-greed-height: 123px;
        --game-cards-xl-width: 324px;
        --game-cards-xl-height: 217px
    }
}

html {
    height: -webkit-fill-available;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

body {
    font-family: var(--font_jost);
    font-size: 21px;
    line-height: 1.48;
    color: var(--text-text);
    background: var(--backgrounds-a);
    --record-winnings-animation-color: var(--white)
}

a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--links-a-default);
    text-decoration: none
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

ul a {
    border-bottom: 0 none;
    line-height: inherit
}

img {
    display: block;
    width: 100%
}

.hidden {
    display: none
}

.relative {
    position: relative
}

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

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

 .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

@keyframes notifyBounceTopToBottom {
    0% {
        transform: translate3d(0, -60px, 0);
        opacity: 0
    }
    80% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes progress {
    0% {
        width: 100%
    }
    to {
        width: 1px
    }
}

.main-wrapper {
    height: unset !important
}

@media (min-width: 1921px) {
    .main-wrapper {
        max-width: 1920px;
        margin: 0 auto
    }
}

.main-wr {
    min-height: 100vh;
    min-height: 100dvh;
    margin-top: var(--topbar-height-mob)
}

@media (max-width: 639px) {
    .main-wr.main-wr--show-collections-menu {
        margin-top: calc(var(--topbar-height-mob) + 40px)
    }
}

@media (min-width: 640px) {
    /*.main-wr.main-wr--show-collections-menu {*/
    .main-wr {
        margin-top: var(--topbar-height-tablet)
    }
}

/*@media (min-width: 640px)and (max-width: 1139px) {*/
/*.main-wr.main-wr--show-collections-menu {*/
/*    margin-top: calc(var(--topbar-height-tablet) + 40px)*/
/*}*/
/*}*/

@media (min-width: 1140px) {
    .main-wr {
        margin-top: var(--full-header-height-desktop)
    }
}

@media (min-width: 1628px) {
    .main-wr {
        margin-top: var(--full-header-height-huge);
        padding: 0 32px
    }
}

.main {
    position: relative;
    margin: 0 auto;
    padding: 0 var(--spacings-2xl)
}

@media (min-width: 1628px) {
    .main {
        padding: 0
    }
}

@media (min-width: 1140px) {
    .main__inner-wr {
        display: flex;
        align-items: stretch;
        gap: 0 var(--spacings-xl);
        width: 100%
    }
}

@media (min-width: 1140px) {
    .main__inner-center {
        width: calc(100% - var(--main-sidebar-width) - var(--spacings-xl));
        max-width: 1386px;
        flex: 0 1 auto
    }
}

@media (min-width: 1628px) {
    .main__inner-center {
        width: calc(100% - var(--main-sidebar-width-lg) - var(--spacings-xl))
    }
}

@media (min-width: 1140px) {
    .main__inner-sidebar-wr {
        position: relative;
        display: flex;
        align-items: flex-end
    }
}

@media (max-width: 1139px) {
    .main__inner-sidebar {
        padding-top: var(--universal-spacings-l)
    }
}

@media (min-width: 1140px) {
    .main__inner-sidebar {
        display: flex;
        flex-direction: column;
        min-width: 316px;
        max-width: 336px;
        width: 100%;
        flex: 0 2 auto;
        gap: var(--spacings-2xl);
        position: -webkit-sticky;
        position: sticky;
        bottom: var(--spacings-m)
    }
}

@media (min-width: 1628px) {
    .main__inner-sidebar {
        min-width: 426px;
        max-width: 446px
    }
}

.currency-content {
    display: none
}

.currency-content.default {
    display: inline
}

.currency-rub .currency-content.rub {
    display: inline !important
}

.currency-rub .currency-content.default:not(.rub) {
    display: none !important
}

.games-slider__navigation .swiper-button-disabled {
    display: none
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--roundings-s);
    background: var(--colors-base-black-35);
    align-self: flex-start
}

.timer-block.timer-block--lg {
    padding: var(--universal-spacings-2xs) var(--universal-spacings-m) var(--universal-spacings-xs);
    gap: var(--universal-spacings-3xs)
}

.timer-block.timer-block--lg {
    gap: 0
}

.promo-card .timer-block {
    width: -webkit-max-content;
    width: max-content
}

.timer-block__title {
    color: var(--text-description-a);
    flex: 0 0 100%;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px
}

.timer-block--lg .timer-block__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px
}

.timer-block__time {
    display: flex;
    align-items: flex-end;
    gap: var(--universal-spacings-3xs)
}

.timer-block__item {
    min-width: 28px;
    padding: 0 var(--universal-spacings-3xs);
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.timer-block__count, .timer-block__label {
    color: var(--text-text);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px
}

.timer-block--lg .timer-block__count, .timer-block--lg .timer-block__label {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px
}

.promo-card {
    position: relative;
    height: 336px;
    width: 100%;
    padding: var(--universal-spacings-2xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--roundings-m);
    overflow: hidden;
    background-image: url(/img/promo_card_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%
}

.promo-card.promo-card--lg {
    height: 446px;
    padding: var(--universal-spacings-3xl) var(--universal-spacings-3xl) 36px var(--universal-spacings-3xl)
}

@media (max-width: 639px) {
     .play .promo-card {
        height: 361px
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
     .play .promo-card {
        height: 358px
    }
}

@media (min-width: 1140px)and (max-width: 1627px) {
     .play .promo-card {
        height: 322px
    }
}

@media (min-width: 1628px) {
     .play .promo-card {
        height: 361px
    }
}

.promo-card__img {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    width: 316px;
    height: 316px;
    object-fit: contain;
    object-position: center
}

.promo-card--lg .promo-card__img {
    width: 424px;
    height: 424px;
    right: -124px;
    bottom: -58px
}

.promo-card__main-info:not(.sport-lobby .promo-card__main-info) {
    padding: var(--universal-spacings-3xs) var(--universal-spacings-s);
    display: flex;
    flex-direction: column;
    border-radius: var(--roundings-s);
    background-color: var(--colors-base-black-35)
}

.promo-card__main-info:not(.play .promo-card__main-info,.sport-lobby .promo-card__main-info) {
    max-width: 214px
}

 .promotions-slider--promotions .promo-card__main-info:not(.play .promo-card__main-info) {
    max-width: 100%
}

@media (min-width: 1628px) {
    .promo-card__main-info:not(.play .promo-card__main-info,.sport-lobby .promo-card__main-info) {
        max-width: 288px;
        padding: var(--universal-spacings-xs) var(--universal-spacings-m)
    }
}

.play .promo-card__main-info {
    max-width: 185px
}

@media (min-width: 1628px) {
    .play .promo-card__main-info {
        max-width: 204px
    }
}

.promo-card__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px
}

.promo-card--lg .promo-card__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px
}

@media (min-width: 1140px) {
    .play .promo-card__title {
        max-width: 176px
    }
}

@media (min-width: 1628px) {
    .play .promo-card__title {
        max-width: 196px
    }
}

.promo-card__prize-pool {
    display: block;
    color: var(--text-accent-text);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px
}

.promo-card--lg .promo-card__prize-pool {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px
}

.promo-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: var(--universal-spacings-l);
    width: 100%
}

.promo-card__header-inner {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-grow: 1
}

.promo-card__body {
    margin-top: auto;
    margin-bottom: 0
}

.promo-card__timer-block {
    margin: 45px 0 var(--universal-spacings-l) 0;
    position: relative;
    z-index: 2
}

.promo-card--lg .promo-card__timer-block {
    margin: var(--universal-spacings-6xl) 0 var(--universal-spacings-4xl) 0
}

 .promotions-slider--promotions .promo-card__timer-block {
    margin-top: auto
}

 .play .promo-card__timer-block {
    margin-bottom: 30px
}

@media (min-width: 1140px)and (max-width: 1627px) {
     .play .promo-card__timer-block {
        margin-bottom: var(--universal-spacings-xl)
    }
}

.promo-card__active-badge {
    background-color: var(--colors-global-accent-b-1);
    padding: var(--universal-spacings-3xs) var(--universal-spacings-m) 3px;
    border-radius: 30px;
    margin-bottom: var(--universal-spacings-2xs);
    color: var(--text-text-invert);
    box-shadow: var(--status-green-shadow);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px
}

.promotions-slider {
    position: relative;
    padding-bottom: var(--universal-spacings-l)
}

@media (min-width: 1140px) {
    .main__inner-sidebar .promotions-slider {
        padding-bottom: 0
    }
}

@media (max-width: 1139px) {
    .promotions-slider .swiper-container {
        margin: 0 calc(var(--spacings-2xl) * -1);
        padding: 0 var(--spacings-2xl)
    }
}

@media (min-width: 1140px) {
    .promotions-slider .swiper-container {
        width: 100%
    }
}

.promotions-slider .swiper-wrapper {
    display: flex;
    align-items: stretch
}

.promotions-slider .swiper-slide {
    height: auto
}

@media (max-width: 1139px) {
    .promotions-slider .swiper-slide {
        width: 336px;
        margin-right: var(--spacings-m)
    }
}

@media (min-width: 640px) {
    .promotions-slider {
        padding-bottom: 24px
    }
}

@media (min-width: 1628px) {
    .promotions-slider {
        padding-bottom: 32px
    }
}

@media (hover: hover)and (pointer: fine) {
    .promotions-slider:hover .promotions-slider__next, .promotions-slider:hover .promotions-slider__prev {
        visibility: visible;
        opacity: 1
    }
}

.promotions-slider__slider {
    position: relative
}

.promotions-slider__next, .promotions-slider__prev {
    display: none
}

@media (min-width: 1140px) {
    .promotions-slider__next, .promotions-slider__prev {
        position: absolute;
        top: 0;
        bottom: 36px;
        margin: auto 0;
        z-index: 2;
        background-color: var(--colors-base-black);
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        visibility: hidden;
        opacity: 0;
        transition: .3s ease-in-out
    }

    .promotions-slider__next.swiper-button-disabled, .promotions-slider__prev.swiper-button-disabled {
        opacity: 0 !important
    }
}

@media (min-width: 1140px) {
    .promotions-slider__prev {
        left: -18px
    }
}

@media (min-width: 1140px) {
    .promotions-slider__next {
        right: -18px
    }
}

.promotions-slider__arrow {
    color: var(--colors-global-primary-1);
    width: 16px;
    height: 16px
}

.promotions-slider__next .promotions-slider__arrow {
    transform: rotate(180deg)
}

@media (max-width: 1139px) {
    .promotions-slider__title {
        margin-bottom: var(--spacings-2xl);
        display: flex;
        align-items: center;
        font-family: var(--font_pacifico);
        font-size: 20px;
        font-weight: 400;
        line-height: 28px
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .promotions-slider__title {
        font-family: var(--font_pacifico);
        font-size: 24px;
        font-weight: 400;
        line-height: 28px
    }
}

@media (min-width: 1140px) {
    .promotions-slider__title {
        margin-bottom: var(--spacings-m);
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
        text-transform: uppercase;
        letter-spacing: 1px
    }
}

@media (min-width: 1628px) {
    .promotions-slider__title {
        font-size: 26px;
        font-weight: 700;
        line-height: 36px
    }
}

.buttons-app__list {
    display: flex;
    justify-content: center;
    gap: var(--spacings-s)
}

.main-footer__buttons-app .buttons-app__list {
    gap: var(--universal-spacings-m)
}

.buttons-app__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    min-height: 48px;
    border-radius: var(--roundings-s);
    background-color: var(--buttons-accent-a-default);
    color: var(--text-text-invert)
}

@media (min-width: 640px)and (max-width: 1139px) {
    .buttons-app__link {
        min-width: 126px
    }
}

@media (min-width: 1628px) {
    .buttons-app__link {
        min-height: 64px
    }
}

.buttons-app__item-icon-wr {
    flex-shrink: 0;
    margin-right: 6px
}

@media (min-width: 1628px) {
    .buttons-app__item-icon-wr {
        margin-right: 8px
    }
}

.buttons-app__item-icon {
    height: auto;
    color: var(--text-text-invert)
}

.buttons-app__item-icon--ios {
    width: 20px
}

@media (min-width: 1628px) {
    .buttons-app__item-icon--ios {
        width: 25px
    }
}

.buttons-app__item-icon--android {
    width: 19px
}

@media (min-width: 1628px) {
    .buttons-app__item-icon--android {
        width: 23px
    }
}

.buttons-app__item {
    width: 100%;
    max-width: 200px
}

.buttons-app__item-text {
    color: var(--text-text-invert);
    font-size: 10px;
    font-weight: 600;
    line-height: 12px
}

.buttons-app__item-text span {
    display: block;
    margin-top: -2px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

@media (min-width: 1628px) {
    .buttons-app__item-text {
        font-size: 12px;
        font-weight: 600;
        line-height: 20px
    }

    .buttons-app__item-text span {
        font-size: 18px;
        line-height: 24px;
        font-weight: 700
    }
}

 .odometer.odometer-theme-default, .odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    position: relative
}

 .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    visibility: hidden
}

 .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden
}

 .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
    display: block
}

 .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden
}

 .odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0)
}

 .odometer.odometer-theme-default {
    font-family: Helvetica Neue, sans-serif;
    line-height: 1.1em
}

 .odometer.odometer-theme-default .odometer-value {
    text-align: center
}

.odometer-inside * {
    will-change: transform
}

.jackpot {
    position: relative;
    height: 80px;
    padding: 12px 0;
    border-radius: var(--roundings-m);
    border: 4px solid var(--colors-global-primary-2-a);
    text-align: center;
    background-color: var(--backgrounds-b)
}

@media (min-width: 1628px) {
    .jackpot {
        padding: 24px 20px 23px;
        border-width: 5px
    }
}

.jackpot--sidebar {
    height: 137px;
    padding: 12px 16px 16px;
    box-shadow: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-image: url(/img/jackpot/jackpot-sidebar-bg-mob.webp)
}

@media (min-width: 1628px) {
    .jackpot--sidebar {
        height: 200px;
        padding: 19px 26px 27px 35px;
        background-image: url(/img/jackpot/jackpot-sidebar-bg.webp)
    }
}

.jackpot__inner {
    position: relative;
    z-index: 1;
    display: grid;
    row-gap: 11px
}

@media (min-width: 1628px) {
    .jackpot__inner {
        row-gap: 19px
    }
}

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

 .jackpot--sidebar .jackpot__odometer {
    justify-content: flex-start
}

.jackpot__title {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: .8px
}

 .jackpot--sidebar .jackpot__title {
    text-align: left;
    text-transform: none
}

@media (min-width: 1628px) {
    .jackpot__title {
        font-size: 22px;
        font-weight: 600;
        line-height: 32px
    }

    .jackpot--sidebar .jackpot__title {
        margin-bottom: 4px
    }
}

.odometer-digit {
    transform: translate3d(0)
}

.odometer-value {
    min-width: 100%
}

.odometer.odometer-theme-default {
    font-family: var(--font_jost);
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--text-accent-text)
}

@media (min-width: 1628px) {
    .jackpot--sidebar .odometer.odometer-theme-default {
        font-size: 36px
    }
}

.jackpot--sidebar .jackpot__btn-wr {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.jackpot__btn {
    padding: 8px 20px;
    height: 36px;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px
}

@media (min-width: 1628px) {
    .jackpot__btn {
        padding: 12px 24px;
        height: 48px;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px
    }
}

.social-links__title {
    margin-bottom: var(--spacings-s);
    text-align: center;
    color: var(--text-description-a);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.main__social-links .social-links__title {
    color: var(--colors-base-white);
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px
}

@media (min-width: 1140px) {
    .social-links__title {
        text-align: left
    }

    .main__social-links .social-links__title {
        text-align: center;
        text-transform: uppercase
    }
}

@media (min-width: 1628px) {
    .social-links__title {
        margin-bottom: var(--spacings-m)
    }

    .main__social-links .social-links__title {
        margin-bottom: 32px;
        font-size: 26px;
        font-weight: 600;
        line-height: 36px
    }
}

.social-links__list {
    display: flex;
    justify-content: center;
    gap: var(--universal-spacings-m)
}

@media (min-width: 1140px) {
    .social-links__list {
        justify-content: flex-start
    }

    .main__social-links .social-links__list {
        justify-content: center
    }
}

.social-links__link {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: var(--roundings-s);
    background: var(--backgrounds-a);
    color: var(--icons-e);
    transition: all .2s ease-out
}

.social-links__link--lg {
    width: 64px;
    height: 64px;
    padding: 14px
}

.social-links__ic {
    width: 24px;
    height: auto
}

.social-links__link--lg .social-links__ic {
    width: 36px
}

@keyframes blickPreloader {
    0% {
        transform: translate(-200%, -50%) skewX(-45deg)
    }
    to {
        transform: translate(200%, -50%) skewX(-45deg)
    }
}

.download-app {
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    width: 100%;
    min-height: 248px;
    max-width: 336px;
    background: url(../../../assets/462607/img/download-app-bg-desk.944b5c4a.webp) no-repeat 168px 24px/168px 168px, url(../../../assets/462607/img/shape-1.ea1b9099.svg) no-repeat 160px 75px/182px 182px, var(--colors-base-100);
    border-radius: var(--roundings-m);
    display: none;
    margin-bottom: 16px
}

.main__inner-sidebar .download-app {
    margin-bottom: 0
}

@media (min-width: 1140px) {
    .download-app {
        display: flex
    }
}

@media (min-width: 640px) {
    .download-app {
        margin-bottom: 24px
    }
}

@media (min-width: 1628px) {
    .download-app {
        padding: 32px;
        min-height: 331px;
        max-width: 446px;
        background: url(../../../assets/462607/img/download-app-bg-desk-lg.6dda70ab.webp) no-repeat 219px 32px/227px 227px, url(../../../assets/462607/img/shape-1.ea1b9099.svg) no-repeat 206px 103px/264px 264px, var(--colors-base-100);
        margin-bottom: 32px
    }
}

.download-app__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.download-app__text {
    padding-right: 16px
}

.download-app__text-title {
    color: var(--colors-base-white);
    margin-bottom: var(--universal-spacings-m);
    font-size: 22px;
    font-weight: 600;
    line-height: 32px
}

@media (min-width: 1140px) {
    .download-app__text-title {
        max-width: 70%
    }
}

@media (min-width: 1628px) {
    .download-app__text-title {
        font-size: 32px;
        font-weight: 600;
        line-height: 40px
    }
}

.download-app__text-subtitle {
    color: var(--text-description-a);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px
}

@media (min-width: 1140px) {
    .download-app__text-subtitle {
        max-width: 185px
    }
}

@media (min-width: 1628px) {
    .download-app__text-subtitle {
        font-size: 18px;
        line-height: 32px;
        max-width: 244px
    }
}

.main__social-links {
    background-color: var(--colors-base-100);
    padding: var(--spacings-2xl);
    border-radius: var(--roundings-m);
    display: none
}

@media (min-width: 1140px) {
    .main__social-links {
        display: block
    }
}

.home-bg-section {
    position: relative
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--gradient-b);
    z-index: 102
}

@media (max-width: 1139px) {
    .top-bar {
        z-index: 31
    }
}

@media (min-width: 1140px) {
    .top-bar {
        width: 100%
    }
}

.top-bar__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--topbar-height-mob);
    padding: 0 var(--spacings-2xl);
    background: var(--gradient-b)
}

@media (min-width: 640px) {
    .top-bar__wrapper {
        padding: 0 var(--spacings-2xl);
        height: var(--topbar-height-tablet)
    }
}

@media (min-width: 1140px) {
    .top-bar__wrapper {
        background: var(--gradient-a);
        height: var(--topbar-height-desktop)
    }

    .top-bar__wrapper > div {
        flex: 1 1 33.333%
    }
}

@media (min-width: 1628px) {
    .top-bar__wrapper {
        height: var(--topbar-height-huge)
    }
}

.top-bar__center {
    display: flex;
    justify-content: center
}

.top-bar__center-link, .top-bar__center-menu {
    display: flex;
    align-items: center
}

.top-bar__center-link {
    padding: 0 12px;
    column-gap: 4px;
    white-space: nowrap;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .7px;
    transition: all .2s ease-out
}

@media (min-width: 1628px) {
    .top-bar__center-link {
        padding: 0 20px;
        column-gap: 8px;
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: .9px
    }
}

.top-bar__center-icon-wr {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.top-bar__center-icon {
    width: 16px;
    height: auto;
    color: var(--icons-a);
    transition: all .2s ease-out
}

.top-bar__center-icon--bonuses-icon, .top-bar__center-icon--promo-icon, .top-bar__center-icon--vip-club-icon {
    margin-bottom: 2px
}

.top-bar__center-icon--promo-icon {
    color: var(--colors-brand-f)
}

.top-bar__center-icon--bonuses-icon {
    width: 14px;
    color: var(--colors-brand-b)
}

.top-bar__center-icon--vip-club-icon {
    color: var(--icons-e)
}

.top-bar__left, .top-bar__logo {
    display: flex;
    align-items: center
}

.top-bar__logo {
    justify-content: flex-start;
    cursor: pointer
}

.top-bar__logo-img {
    width: auto;
    height: 25px
}

@media (min-width: 640px) {
    .top-bar__logo-img {
        height: 32px
    }
}

@media (min-width: 1628px) {
    .top-bar__logo-img {
        height: 36px
    }
}

.top-bar__search {
    display: grid;
    grid-template-columns:minmax(87px, 277px);
    margin-left: 16px
}

.top-bar__search-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
    max-width: 276px;
    gap: var(--spacings-xs);
    padding: 0 var(--spacings-s);
    border-radius: var(--roundings-circle);
    cursor: pointer;
    transition: none;
    text-transform: none
}

 .top-bar__search-btn {
    background-color: var(--backgrounds-c)
}

.top-bar__search-icon {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    color: var(--text-description-a);
    transition: all .2s ease-out
}

.top-bar__search-btn-text {
    color: var(--text-description-a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: var(--spacings-xs);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.top-bar__right {
    display: flex;
    justify-content: flex-end;
    transition: all .2s ease-out
}

.seo-block-content {
    position: relative;
    top: -72px;
    margin: 0 auto;
    padding: 16px
}

.seo-block-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: hsla(0, 0%, 100%, .2)
}

.seo-block-content h1, .seo-block-content h2, .seo-block-content h3 {
    margin: 24px 0 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: hsla(0, 0%, 100%, .8)
}

.seo-block-content h1:first-child, .seo-block-content h2:first-child, .seo-block-content h3:first-child {
    margin-top: 0
}

@media (min-width: 1140px) {
    .seo-block-content h1, .seo-block-content h2, .seo-block-content h3 {
        margin-top: 28px
    }
}

@media (min-width: 1628px) {
    .seo-block-content h1, .seo-block-content h2, .seo-block-content h3 {
        font-size: 16px;
        line-height: 24px
    }
}

@media (min-width: 640px) {
    .seo-block-content {
        padding: 24px
    }
}

@media (min-width: 1140px) {
    .seo-block-content {
        top: 0;
        padding: 32px 40px
    }

    .seo-block-content:before {
        display: none
    }
}

@media (min-width: 1628px) {
    .seo-block-content {
        margin: 0 -32px;
        padding: 32px 120px
    }
}

.seo-block-content__p {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 20px;
    color: hsla(0, 0%, 100%, .6)
}

.seo-block-content__p:last-child {
    margin-bottom: 0
}

@media (min-width: 1628px) {
    .seo-block-content__p {
        font-size: 14px;
        line-height: 24px
    }
}

.seo-block__ul {
    margin-bottom: 12px;
    padding: 12px 0
}

.seo-block__ul:last-child {
    margin-bottom: 0
}

.seo-block__ul-li {
    margin-bottom: 16px;
    padding-left: 18px;
    position: relative;
    font-size: 12px;
    line-height: 20px;
    color: hsla(0, 0%, 100%, .6)
}

.seo-block__ul-li:before {
    content: "";
    display: flex;
    position: absolute;
    top: 8px;
    left: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .6)
}

.seo-block__ul-li:last-child {
    margin-bottom: 0
}

@media (min-width: 1628px) {
    .seo-block__ul-li {
        font-size: 14px;
        line-height: 24px
    }
}

.seo-table {
    display: flex;
    width: 100%;
    margin-bottom: var(--universal-spacings-m);
    overflow: auto
}

.seo-table:last-child {
    margin-bottom: 0
}

.seo-table td {
    border: 1px solid hsla(0, 0%, 100%, .6);
    padding: .5rem
}

.payment-list {
    --item-height: 28px;
    --row-gap: var(--universal-spacings-3xl);
    --column-gap: var(--universal-spacings-4xl);
    --max-rows: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 0 var(--column-gap);
    max-height: calc((var(--item-height) + var(--row-gap)) * var(--max-rows) - var(--row-gap))
}

@media (min-width: 640px) {
    .payment-list {
        --item-height: 32px;
        --column-gap: var(--universal-spacings-5xl)
    }
}

@media (min-width: 1628px) {
    .payment-list {
        --item-height: 36px;
        --column-gap: 72px
    }
}

.payment-list--scrolled {
    --item-height: 24px;
    --column-gap: var(--universal-spacings-3xl);
    position: relative
}

@media (max-width: 1139px) {
    .payment-list--scrolled {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 var(--universal-spacings-2xl);
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .payment-list--scrolled::-webkit-scrollbar {
        display: none
    }
}

@media (min-width: 1140px) {
    .payment-list--scrolled {
        --item-height: 28px;
        --column-gap: var(--universal-spacings-5xl)
    }
}

@media (min-width: 1628px) {
    .payment-list--scrolled {
        --item-height: 32px;
        --column-gap: var(--universal-spacings-6xl)
    }
}

.payment-list__btn {
    display: block;
    padding: 0;
    border: none;
    background: none
}

.payment-list__img {
    width: auto;
    height: var(--item-height)
}

.payment-list__div {
    height: var(--row-gap);
    flex: 100% 0 0
}

.main-slider {
    margin-bottom: var(--spacings-2xl)
}

@media (min-width: 1140px) {
    .main-slider {
        padding-top: var(--universal-spacings-xl)
    }
}

@media (min-width: 1628px) {
     .main-slider {
        padding-top: var(--universal-spacings-2xl)
    }
}

.main-slider__payment-list {
    display: flex;
    justify-content: center;
    padding: var(--universal-spacings-m) 0;
    background: var(--gradient-a)
}

@media (max-width: 1139px) {
    .main-slider__payment-list {
        margin: 0 calc(var(--spacings-2xl) * -1)
    }
}

@media (min-width: 1140px) {
    .main-slider__payment-list {
        padding: var(--universal-spacings-l) 0;
        border-radius: var(--roundings-m);
        background: var(--backgrounds-c)
    }
}

.card-badge {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 8px;
    pointer-events: none;
    overflow: hidden;
    z-index: 3
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge {
        padding-top: 12px
    }
}

.games-slider-wrap--size-xl .card-badge {
    padding-top: 8px
}

@media (min-width: 640px) {
    .games-slider-wrap--size-xl .card-badge {
        padding-top: 12px
    }
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-xl .card-badge {
        padding-top: 16px
    }
}

.card-badge__left, .card-badge__right {
    display: flex;
    flex-direction: column;
    gap: var(--universal-spacings-2xs)
}

@media (min-width: 640px) {
    .games-slider-wrap--size-l .card-badge__left, .games-slider-wrap--size-l .card-badge__right, .games-slider-wrap--size-xl .card-badge__left, .games-slider-wrap--size-xl .card-badge__right {
        gap: var(--universal-spacings-xs)
    }
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge__left, .games-slider-wrap--size-l .card-badge__right, .games-slider-wrap--size-xl .card-badge__left, .games-slider-wrap--size-xl .card-badge__right {
        gap: var(--universal-spacings-xs)
    }
}

.card-badge__left {
    align-items: flex-start
}

.card-badge__right {
    align-items: flex-end
}

.card-badge__left-live {
    display: inline-flex;
    align-items: center;
    border-radius: 0 var(--roundings-xs) var(--roundings-xs) 0;
    background-color: var(--badges-live-background);
    padding: 1px var(--universal-spacings-2xs);
    gap: var(--universal-spacings-3xs);
    color: var(--badges-live-text);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    text-transform: uppercase
}

.card-badge__left-live:before {
    content: "";
    display: inline-block;
    width: var(--universal-spacings-xs);
    height: var(--universal-spacings-xs);
    background-color: var(--badges-live-icon);
    border-radius: var(--roundings-circle)
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge__left-live {
        padding: 0 var(--universal-spacings-2xs) 1px var(--universal-spacings-xs);
        font-size: 12px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase
    }
}

@media (min-width: 640px) {
    .games-slider-wrap--size-xl .card-badge__left-live {
        padding: 0 var(--universal-spacings-2xs) 1px var(--universal-spacings-xs);
        font-size: 12px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase
    }
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-xl .card-badge__left-live {
        padding: var(--universal-spacings-3xs) var(--universal-spacings-xs) var(--universal-spacings-3xs) var(--universal-spacings-s);
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase
    }
}

.card-badge__left-promo {
    display: inline-flex;
    padding: var(--universal-spacings-3xs) var(--universal-spacings-3xs) var(--universal-spacings-3xs) var(--universal-spacings-2xs);
    border-radius: 0 4px 4px 0;
    background-color: var(--badges-promoaction-background)
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge__left-promo {
        padding: var(--universal-spacings-2xs) var(--universal-spacings-2xs) var(--universal-spacings-2xs) var(--universal-spacings-xs)
    }
}

.games-slider-wrap--size-xl .card-badge__left-promo {
    padding: var(--universal-spacings-2xs) var(--universal-spacings-2xs) var(--universal-spacings-2xs) var(--universal-spacings-xs)
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-xl .card-badge__left-promo {
        padding: var(--universal-spacings-xs) var(--universal-spacings-xs) var(--universal-spacings-xs) var(--universal-spacings-s)
    }
}

.card-badge__left-promo-img {
    width: 28px;
    height: 28px
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge__left-promo-img {
        width: var(--universal-spacings-4xl);
        height: var(--universal-spacings-4xl)
    }
}

.games-slider-wrap--size-xl .card-badge__left-promo-img {
    width: var(--universal-spacings-4xl);
    height: var(--universal-spacings-4xl)
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-xl .card-badge__left-promo-img {
        width: 48px;
        height: 48px
    }
}

.card-badge__left-jackpot {
    display: inline-flex;
    padding: 1px var(--universal-spacings-2xs);
    border-radius: 0 var(--roundings-xs) var(--roundings-xs) 0;
    background-color: var(--colors-global-accent-b-1);
    color: var(--icons-invert);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    text-transform: uppercase
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge__left-jackpot {
        padding: 0 var(--universal-spacings-2xs) 1px var(--universal-spacings-xs);
        font-size: 12px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase
    }
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-xl .card-badge__left-jackpot {
        padding: var(--universal-spacings-3xs) var(--universal-spacings-xs) var(--universal-spacings-3xs) var(--universal-spacings-s);
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase
    }
}

.card-badge__right-new {
    display: inline-flex;
    padding: 1px var(--universal-spacings-2xs);
    border-radius: var(--roundings-xs) 0 0 var(--roundings-xs);
    background: var(--badges-new-background);
    color: var(--badges-new-text);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    text-transform: uppercase
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge__right-new {
        padding: 0 var(--universal-spacings-xs) 1px var(--universal-spacings-2xs);
        font-size: 12px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase
    }
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-xl .card-badge__right-new {
        padding: var(--universal-spacings-3xs) var(--universal-spacings-s) var(--universal-spacings-3xs) var(--universal-spacings-xs);
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-transform: uppercase
    }
}

.card-badge__right-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: var(--universal-spacings-2xs);
    background-color: var(--colors-brand-f);
    color: var(--icons-invert);
    border-radius: var(--roundings-xs) 0 0 var(--roundings-xs);
    pointer-events: auto
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-l .card-badge__right-bonus {
        width: 32px;
        height: 32px;
        padding: var(--universal-spacings-xs)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--size-xl .card-badge__right-bonus {
        width: 32px;
        height: 32px;
        padding: var(--universal-spacings-xs)
    }
}

@media (min-width: 1628px) {
    .games-slider-wrap--size-xl .card-badge__right-bonus {
        width: 36px;
        height: 36px
    }
}

.games-list-card {
    position: relative;
    flex-shrink: 0;
    width: 154px;
    height: 104px;
    margin-top: 0 !important;
    margin-right: var(--spacings-m);
    border-radius: var(--roundings-s);
    transform: translateZ(0)
}

.games-slider-wrap--size-l .games-list-card {
    width: var(--game-cards-l-width);
    height: var(--game-cards-l-height)
}

.games-slider-wrap--size-xl .games-list-card {
    width: var(--game-cards-xl-width);
    height: var(--game-cards-xl-height)
}

 .games-slider-wrap--size-l-greed .games-list-card {
    width: 100%;
    height: auto
}

 .games-slider-wrap--size-l-greed .games-list-card:before {
    content: "";
    display: block;
    padding-top: 67.54%
}

@media (min-width: 640px)and (max-width: 1139px) {
     .games-slider-wrap--size-l-greed .games-list-card:before {
        padding-top: 67.37%
    }
}

.swiper-wrapper .games-list-card:last-child {
    margin-right: 0
}

.games-list-card:hover {
    z-index: 2
}

.games-slider--tabs .games-list-card {
    margin-right: 0
}

@media (min-width: 1140px)and (max-width: 1627px) {
    .games-slider-wrap--section-jackpot .games-list-card {
        margin-right: var(--spacings-m)
    }
}

.games-list-card__body {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    transform: translate3d(-50%, 0, 0);
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease-in-out
}

@keyframes setPointer {
    0% {
        z-index: 10
    }
    99% {
        z-index: 10
    }
    to {
        z-index: -10
    }
}

.games-list-card-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--roundings-s);
    overflow: hidden;
    transition: .2s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

.games-list-card-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colors-base-black-90);
    z-index: 1;
    opacity: 0;
    transition: opacity .2s ease-in-out
}

.games-list-card__body-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.games-slider__navigation {
    display: flex;
    align-items: center;
    gap: 0 8px
}

@media (min-width: 1140px) {
    .games-slider__navigation {
        gap: 0 var(--spacings-xs)
    }
}

.swiper-navigate {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--borders-c);
    border-radius: var(--roundings-circle);
    z-index: 1;
    cursor: pointer
}

@media (min-width: 640px) {
    .swiper-navigate {
        width: 36px;
        height: 36px
    }
}

@media (min-width: 1628px) {
    .swiper-navigate {
        width: 48px;
        height: 48px
    }
}

.swiper-navigate-icon {
    display: flex;
    height: 14px;
    width: auto
}

.swiper-navigate--section-popular-prev .swiper-navigate-icon {
    transform: translateX(-1px)
}

.swiper-navigate--section-popular-next .swiper-navigate-icon {
    transform: translateX(1px)
}

@media (min-width: 1628px) {
    .swiper-navigate-icon {
        height: 16px
    }
}

.swiper-navigate--prev .swiper-navigate-icon {
    margin: 10px auto auto 12px
}

@media (min-width: 1628px) {
    .swiper-navigate--prev .swiper-navigate-icon {
        margin: 15px auto auto 18px
    }
}

.swiper-navigate--next .swiper-navigate-icon {
    margin: 10px 13px auto auto
}

@media (min-width: 1628px) {
    .swiper-navigate--next .swiper-navigate-icon {
        margin: 15px 18px auto auto
    }
}

.swiper-navigate--disabled {
    border-color: var(--buttons-secondary-disable);
    pointer-events: none
}

.games-slider-wrap {
    position: relative;
    margin-bottom: var(--spacings-2xl);
    z-index: 1
}

@media (min-width: 640px)and (max-width: 1139px) {
    .games-slider-wrap {
        margin-bottom: var(--spacings-3xl)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap {
        background-color: var(--backgrounds-b);
        border-radius: var(--roundings-m);
        padding: var(--universal-spacings-2xl);
        margin-bottom: var(--spacings-xl)
    }

    .games-jackpot .games-slider-wrap {
        background-color: transparent;
        margin-bottom: 0;
        padding: var(--spacings-2xl) 0 0 0;
        z-index: 3
    }

    .main-page__games-providers--home-section .games-slider-wrap {
        background: linear-gradient(309deg, rgba(120, 250, 81, 0) 76.25%, rgba(120, 250, 81, .16) 98.66%), var(--backgrounds-b)
    }
}

@media (min-width: 1628px) {
    .games-slider-wrap {
        padding: var(--spacings-2xl) var(--universal-spacings-6xl) var(--spacings-2xl) var(--universal-spacings-5xl)
    }
}

@media (min-width: 640px) {
    .main-page__games-providers--home-section .games-slider-wrap {
        overflow-x: hidden
    }
}

.games-slider-wrap.games-slider-wrap--section-live_dealers {
    margin-bottom: var(--spacings-2xl)
}

@media (min-width: 1140px) {
    .games-slider-wrap.games-slider-wrap--section-live_dealers {
        margin-bottom: var(--spacings-xl)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--section-popular:before {
        background: linear-gradient(309deg, rgba(240, 222, 70, 0) 76.25%, rgba(240, 222, 70, .16) 98.66%)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--section-popular:before {
        content: "";
        border-radius: inherit;
        z-index: 3;
        pointer-events: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--section-new:before {
        background: linear-gradient(309deg, rgba(253, 106, 193, 0) 76.25%, rgba(253, 106, 193, .16) 98.66%)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--section-live_dealers:before, .games-slider-wrap--section-new:before {
        content: "";
        border-radius: inherit;
        z-index: 3;
        pointer-events: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%
    }

    .games-slider-wrap--section-live_dealers:before {
        background: linear-gradient(309deg, rgba(252, 84, 90, 0) 76.25%, rgba(252, 84, 90, .16) 98.66%)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--section-instant:before {
        background: linear-gradient(309deg, rgba(109, 224, 224, 0) 76.25%, rgba(109, 224, 224, .16) 98.66%)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--section-instant:before, .games-slider-wrap--section-slots:before {
        content: "";
        border-radius: inherit;
        z-index: 3;
        pointer-events: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%
    }

    .games-slider-wrap--section-slots:before {
        background: linear-gradient(309deg, rgba(253, 157, 81, 0) 76.25%, rgba(253, 157, 81, .16) 98.66%)
    }
}

@media (min-width: 1140px) {
    .games-slider-wrap--section-collections:before {
        content: "";
        background: linear-gradient(309deg, rgba(121, 97, 228, 0) 76.25%, rgba(121, 97, 228, .16) 98.66%);
        border-radius: inherit;
        z-index: 3;
        pointer-events: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%
    }
}

@media (max-width: 639px) {
    .swiper-container-multirow {
        flex-wrap: wrap;
        flex-direction: column;
        gap: var(--spacings-m) 0
    }

    .games-slider-wrap--two-row .swiper-container-multirow {
        --rows: 2;
        max-height: 320px
    }

    .games-slider-wrap--three-row .swiper-container-multirow {
        --rows: 3;
        max-height: calc((var(--game-cards-l-height) + var(--spacings-m)) * var(--rows) - var(--spacings-m))
    }
}

.main-page__games-providers--home-section .swiper-container-multirow {
    gap: var(--spacings-xs) 0
}

.games-slider {
    --rows: 1;
    position: relative;
    overflow: hidden
}

.games-slider:after, .games-slider:before {
    content: "";
    height: 100%;
    width: var(--universal-spacings-2xl);
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

@media (max-width: 1139px) {
    .games-slider:after, .games-slider:before {
        display: none
    }
}

.games-slider:before {
    left: -1px;
    border-bottom-left-radius: var(--roundings-circle);
    background: linear-gradient(90deg, #190a38, rgba(25, 10, 56, 0))
}

@media (min-width: 1628px) {
    .games-slider:before {
        top: calc(50% - 5px);
        width: var(--universal-spacings-5xl);
        border-bottom-left-radius: 0
    }
}

.games-slider:after {
    right: -1px;
    border-bottom-right-radius: var(--roundings-circle);
    background: linear-gradient(270deg, #190a38 60%, rgba(25, 10, 56, 0))
}

@media (min-width: 1628px) {
    .games-slider:after {
        top: calc(50% - 5px);
        width: var(--universal-spacings-6xl);
        border-bottom-right-radius: 0
    }
}

.games-slider-wr--jackpot-providers .games-slider:after, .games-slider-wr--jackpot-providers .games-slider:before {
    content: none
}

@media (max-width: 639px) {
    .games-slider {
        --rows: 1;
        display: flex;
        overflow-x: scroll;
        scrollbar-width: none
    }

    .games-slider::-webkit-scrollbar {
        height: 0;
        width: 0;
        opacity: 0;
        color: transparent;
        background-color: transparent;
        display: none
    }

    .games-slider::-webkit-scrollbar-thumb, .games-slider::-webkit-scrollbar-track {
        background: transparent;
        display: none
    }

    .games-jackpot .games-slider-wr--jackpot-providers .games-slider {
        gap: var(--universal-spacings-s);
        padding-bottom: var(--universal-spacings-2xl)
    }
}

@media (max-width: 1139px) {
    .games-slider {
        margin: 0 calc(var(--spacings-2xl) * -1);
        padding: 0 var(--spacings-2xl)
    }
}

@media (min-width: 1140px) {
    .games-slider {
        margin: calc(var(--universal-spacings-2xl) * -1);
        padding: var(--universal-spacings-2xl)
    }

    .games-slider-wr--jackpot-providers .games-slider {
        padding: 64px 0;
        margin: -64px 0;
        overflow: hidden
    }
}

@media (min-width: 1628px) {
    .games-slider {
        margin: -20px -64px -20px -58px;
        padding: 20px var(--universal-spacings-6xl) 20px var(--universal-spacings-5xl)
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .games-jackpot .games-slider {
        padding-bottom: var(--universal-spacings-3xl)
    }
}

/*@media (min-width: 640px) {*/
     .games-slider-wrap--three-row .swiper-wrapper, .games-slider-wrap--two-row .swiper-wrapper {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows:repeat(var(--rows), 1fr)
    }
/*}*/

@media (min-width: 640px) {
    .games-slider-wrap--two-row .swiper-wrapper {
        --rows: 2;
        max-height: 500px
    }
}

@media (min-width: 640px) {
    .games-slider-wrap--three-row .swiper-wrapper {
        --rows: 3;
        max-height: 600px
    }

    .main-page__games-providers--home-section .games-slider-wrap--three-row .swiper-wrapper {
        gap: var(--spacings-xs) !important
    }
}

.games-slider-wrap--size-l .swiper-wrapper {
    gap: var(--spacings-m) 0
}

.games-slider-wrap--size-xs .swiper-wrapper {
    gap: var(--spacings-xs) 0
}

.games-slider__title {
    color: var(--text-text);
    padding-left: var(--spacings-s);
    font-family: var(--font_pacifico);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px
}

@media (min-width: 640px) {
    .games-slider__title {
        font-family: var(--font_pacifico);
        font-size: 24px;
        font-weight: 400;
        line-height: 28px
    }
}

@media (min-width: 1628px) {
    .games-slider__title {
        font-family: var(--font_pacifico);
        font-size: 32px;
        font-weight: 400;
        line-height: 32px
    }
}

.games-slider__inner {
    position: relative;
    margin: 0 calc(var(--spacings-2xl) * -1);
    padding: 0 var(--spacings-2xl)
}

.games-slider__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2
}

@media (max-width: 1139px) {
    .games-slider__head {
        gap: var(--spacings-s);
        margin-bottom: var(--spacings-2xl)
    }

    .games-list-with-tabs .games-slider__head {
        margin-bottom: var(--spacings-l)
    }
}

@media (min-width: 1140px) {
    .games-slider__head {
        margin-bottom: var(--spacings-xl)
    }
}

@media (min-width: 1628px) {
    .games-slider__head {
        margin-bottom: var(--spacings-l)
    }

    .games-list-with-tabs .games-slider__head {
        margin-bottom: var(--spacings-2xl)
    }
}

.games-slider__inner-wr {
    position: relative
}

@media (max-width: 1139px) {
    .games-slider__inner-wr {
        overflow-x: hidden;
        margin: 0 calc(var(--spacings-2xl) * -1);
        padding: 0 var(--spacings-2xl)
    }

    .games-slider--tabs .games-slider__inner-wr {
        overflow-x: scroll
    }
}

.games-slider__head--wrap {
    display: flex;
    align-items: center
}

.games-slider__icon-wr {
    width: 36px;
    height: 36px;
    flex-shrink: 0
}

@media (min-width: 1628px) {
    .games-slider__icon-wr {
        width: 54px;
        height: 54px
    }
}

.games-slider__icon {
    height: auto;
    color: var(--colors-brand-b)
}

.games-slider-wrap--section-popular .games-slider__icon {
    width: 28px;
    color: var(--colors-brand-a)
}

.games-slider-wrap--section-new .games-slider__icon {
    width: 28px
}

.games-slider-wrap--section-live_dealers .games-slider__icon {
    width: 24px;
    color: var(--colors-brand-c)
}

.games-slider-wrap--section-instant .games-slider__icon {
    width: 25px;
    color: var(--colors-brand-e)
}

.games-slider-wrap--section-slots .games-slider__icon {
    width: 36px;
    color: var(--colors-brand-h)
}

.games-slider-wrap--section-collections .games-slider__icon {
    width: 33px;
    color: var(--colors-brand-i)
}

.main-page__games-providers--home-section .games-slider__icon {
    width: 24px;
    color: var(--colors-brand-g)
}

.games-slider-wrap--section-jackpot .games-slider__icon {
    width: 24px;
    color: var(--colors-brand-k)
}

@media (min-width: 1628px) {
    .games-slider-wrap--section-popular .games-slider__icon {
        width: 40px
    }

    .games-slider-wrap--section-new .games-slider__icon {
        width: 42px
    }

    .games-slider-wrap--section-instant .games-slider__icon, .games-slider-wrap--section-live_dealers .games-slider__icon {
        width: 38px
    }

    .games-slider-wrap--section-slots .games-slider__icon {
        width: 54px
    }

    .games-slider-wrap--section-collections .games-slider__icon {
        width: 50px
    }

    .main-page__games-providers--home-section .games-slider__icon {
        width: 38px
    }

    .games-slider-wrap--section-jackpot .games-slider__icon {
        width: 36px
    }
}

.games-slider__button-wrap {
    display: flex;
    align-items: center;
    gap: 0 var(--universal-spacings-s)
}

@media (min-width: 1628px) {
    .games-slider__button-wrap {
        gap: 0 var(--universal-spacings-m)
    }
}

.games-slider__inner .games-slider__button-all {
    display: flex;
    margin: var(--spacings-2xl) auto 0 auto
}

@media (min-width: 1140px) {
    .games-slider__inner .games-slider__button-all {
        margin-top: var(--spacings-xl)
    }
}

@media (min-width: 1628px) {
    .games-slider__inner .games-slider__button-all {
        margin-top: var(--spacings-2xl)
    }
}

.games-slider--tabs {
    --columns: 6;
    display: grid;
    grid-template-columns:repeat(var(--columns), minmax(var(--game-cards-l-width), var(--game-cards-l-width)));
    gap: var(--spacings-m);
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scrollbar-width: none
}

.games-slider--tabs::-webkit-scrollbar {
    height: 0;
    width: 0;
    opacity: 0;
    color: transparent;
    background-color: transparent;
    display: none
}

.games-slider--tabs::-webkit-scrollbar-thumb, .games-slider--tabs::-webkit-scrollbar-track {
    background: transparent;
    display: none
}

@media (min-width: 1140px) {
    .games-slider--tabs {
        --columns: 5;
        gap: var(--spacings-s);
        grid-template-columns:repeat(var(--columns), minmax(var(--game-cards-l-greed-width), 250px))
    }
}

.random-game-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--game-cards-l-width);
    height: var(--game-cards-l-height);
    border-radius: var(--roundings-s);
    background: var(--rgadient-random-card);
    margin-right: 16px;
    cursor: pointer
}

.random-game-card__video-wr {
    top: -14px;
    width: 169px;
    height: calc(var(--game-cards-l-height) + 14px);
    transform: rotate(6deg);
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

@media (min-width: 640px) {
    .random-game-card__video-wr {
        top: -18px;
        width: 206px;
        height: calc(var(--game-cards-l-height) + 18px)
    }
}

@media (min-width: 1628px) {
    .random-game-card__video-wr {
        top: -22px;
        width: 260px;
        height: calc(var(--game-cards-l-height) + 22px)
    }
}

.random-game-card__video {
    width: -webkit-max-content;
    width: max-content;
    height: 169px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

@media (min-width: 640px) {
    .random-game-card__video {
        height: 208px
    }
}

@media (min-width: 1628px) {
    .random-game-card__video {
        height: 260px
    }
}

.play-provider {
    margin-right: 0 !important;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--roundings-s);
    background: var(--backgrounds-b);
    transition: background .35s ease-out
}

.play-provider:last-child {
    margin-right: 0
}

@media (max-width: 639px) {
    .play-provider {
        display: none;
        width: 120px;
        height: 67px;
        margin-right: 4px !important
    }

    .play-provider:nth-child(-n+10) {
        display: flex
    }
}

@media (min-width: 640px) {
    .play-provider {
        max-width: 204px;
        height: auto
    }
}

@media (min-width: 1140px) {
    .play-provider {
        gap: 12px
    }
}

.main-page__games-providers--home-section .play-provider {
    display: flex;
    border-radius: var(--roundings-xs)
}

@media (min-width: 640px) {
    .main-page__games-providers--home-section .play-provider {
        max-width: none;
        width: calc(25vw + var(--spacings-xs) / 4 - var(--spacings-xs) * 3);
        height: calc(16.66667vw + var(--spacings-xs) * 4 / 6 - var(--spacings-xs) * 5);
        max-height: 150px
    }
}

@media (min-width: 1140px) {
    .main-page__games-providers--home-section .play-provider {
        width: clamp(112px, calc(18vw - 95px), 193px);
        height: calc(10.62vw - 56.05px);
        max-height: 109px;
        background: var(--backgrounds-c)
    }
}

@media (min-width: 1628px) {
    .main-page__games-providers--home-section .play-provider {
        width: clamp(132px, calc(18vw - 161px), 174px);
        height: calc(10.08vw - 90.16px);
        max-height: 97px
    }
}

.main-page__games-providers--home-section .play-provider:last-child {
    margin-right: 20px
}

.play-provider__img-wr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1
}

.play-provider__img {
    height: inherit
}

.main-page__games-providers.main-page__games-providers--home-section .games-slider {
    margin: 0;
    padding: 0
}

.main-page__games-providers.main-page__games-providers--home-section .games-slider:after, .main-page__games-providers.main-page__games-providers--home-section .games-slider:before {
    display: none
}

.games-jackpot {
    position: relative;
    padding: 80px 16px 0;
    margin: 0 -16px;
    background-color: var(--backgrounds-b);
    background-repeat: no-repeat;
    background-size: 639px 454px;
    background-position: top;
    background-image: url(/img/jackpot/jackpot-bg-mob.webp)
}

@media (min-width: 640px) {
    .games-jackpot {
        padding: var(--universal-spacings-6xl) var(--spacings-2xl) 0;
        margin: 0 calc(var(--spacings-2xl) * -1);
        background-size: 1139px 516px;
        background-image: url(/img/jackpot/jackpot-bg-tab.webp)
    }
}

@media (min-width: 1140px) {
    .games-jackpot {
        margin: 0 0 var(--spacings-xl);
        padding: var(--universal-spacings-6xl) var(--spacings-2xl) var(--spacings-2xl) var(--spacings-2xl);
        border-radius: var(--roundings-m);
        background-size: 1227px 462px;
        overflow-x: clip;
        background-image: url(/img/jackpot/jackpot-bg-desk.webp)
    }
}

@media (min-width: 1628px) {
    .games-jackpot {
        padding: 100px var(--universal-spacings-6xl) var(--spacings-2xl) var(--universal-spacings-5xl);
        background-size: 1386px 474px
    }
}

.games-jackpot .odometer-value {
    transform: translateZ(40px) !important
}

.games-jackpot__bg {
    position: absolute;
    top: -33px;
    right: calc(50% - 37px);
    transform: translateX(-50%);
    width: 170px;
    height: 151px;
    margin: 0 auto;
    z-index: 5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-image: url(/img/jackpot/jackpot-dog.webp)
}

@media (min-width: 640px) {
    .games-jackpot__bg {
        top: -51px;
        right: calc(50% - 10px);
        transform: translateX(-50%);
        width: 180px;
        height: 159px
    }
}

@media (min-width: 1140px) {
    .games-jackpot__bg {
        top: -45px;
        right: calc(50% + 180px);
        transform: translateX(-50%);
        width: 244px;
        height: 217px
    }
}

@media (min-width: 1628px) {
    .games-jackpot__bg {
        top: -80px;
        right: calc(50% + 160px);
        transform: translateX(-50%);
        width: 373px;
        height: 331px
    }
}

.games-jackpot__caption {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--spacings-xl)
}

@media (min-width: 640px) {
    .games-jackpot__caption {
        font-size: 24px;
        line-height: 24px
    }
}

@media (min-width: 1628px) {
    .games-jackpot__caption {
        font-size: 36px;
        line-height: 36px
    }
}

.games-jackpot__odometer {
    margin: 0 auto var(--spacings-3xl);
    z-index: 3
}

.games-jackpot__odometer, .games-jackpot__text-wr {
    position: relative;
    width: 100%
}

.games-jackpot__text-wr .odometer.odometer-theme-default {
    display: block;
    color: var(--text-accent-text);
    font-size: 32px;
    font-weight: 700;
    line-height: 32px
}

.games-jackpot__text-wr .odometer.odometer-theme-default + .odometer {
    margin-left: 9px
}

.games-jackpot__text-wr .odometer.odometer-theme-default .odometer-inside {
    display: flex;
    align-items: center;
    justify-content: center
}

.games-jackpot__text-wr .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: block
}

.games-jackpot__text-wr .odometer.odometer-theme-default .odometer-formatting-mark {
    width: 10px
}

@media (min-width: 640px) {
    .games-jackpot__text-wr .odometer.odometer-theme-default {
        font-size: 54px;
        line-height: 54px
    }

    .games-jackpot__text-wr .odometer.odometer-theme-default + .odometer {
        margin-left: 17px
    }

    .games-jackpot__text-wr .odometer.odometer-theme-default .odometer-formatting-mark {
        width: 22px
    }
}

@media (min-width: 1628px) {
    .games-jackpot__text-wr .odometer.odometer-theme-default {
        font-size: 72px;
        line-height: 72px
    }
}

.games-jackpot__text {
    display: flex;
    align-items: center;
    justify-content: center
}

.games-jackpot__provider-slide {
    padding: 0 var(--spacings-m);
    border-radius: var(--roundings-s);
    background: var(--backgrounds-d);
    min-height: 58px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    min-width: 120px;
    width: auto !important;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .2s ease-out
}

.games-jackpot__provider-slide:not(.games-jackpot__provider-slide--all):active {
    background: var(--backgrounds-a)
}

@media (min-width: 640px) {
    .games-jackpot__provider-slide {
        margin-right: var(--spacings-s)
    }

    .games-jackpot__provider-slide:last-child {
        margin-right: 0
    }
}

@media (min-width: 1140px) {
    .games-jackpot__provider-slide {
        min-height: 44px;
        min-width: 140px
    }

    .games-jackpot__provider-slide.games-jackpot__provider-slide--all {
        min-width: 108px
    }
}

@media (min-width: 1628px) {
    .games-jackpot__provider-slide {
        min-width: 152px;
        min-height: 72px
    }

    .games-jackpot__provider-slide.games-jackpot__provider-slide--all {
        min-width: 144px
    }
}

.games-jackpot__provider-slide--all {
    background-color: transparent;
    border: 1px solid var(--buttons-secondary-default)
}

.games-jackpot__provider-name {
    color: var(--text-text);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px
}

@media (min-width: 1140px) {
    .games-jackpot__provider-name {
        font-size: 12px;
        font-weight: 700;
        line-height: 20px
    }
}

@media (min-width: 1628px) {
    .games-jackpot__provider-name {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px
    }
}

.games-jackpot__provider-name-all {
    text-transform: uppercase
}

.games-jackpot__provider-sum {
    color: var(--text-accent-text);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px
}

@media (min-width: 1628px) {
    .games-jackpot__provider-sum {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px
    }
}

.games-slider-wr--jackpot-providers {
    position: relative;
    z-index: 2
}

.games-slider-wr--jackpot-providers-nav {
    position: absolute;
    top: 50%;
    background: var(--backgrounds-a);
    color: var(--icons-a);
    z-index: 3;
    transition: all .2s ease-out
}

.games-slider-wr--jackpot-providers-nav.swiper-button-disabled {
    opacity: 0
}

.games-slider-wr--jackpot-providers-prev {
    left: 0;
    transform: translateY(-50%) translateX(-50%)
}

.games-slider-wr--jackpot-providers-next {
    right: 0;
    transform: translateY(-50%) translateX(50%)
}

.home-bg-section-inner {
    margin: 0 auto
}

.cards-slider-tabs {
    display: flex;
    gap: 0 var(--spacings-2xl);
    border-bottom: 1px solid var(--borders-b);
    margin-bottom: var(--spacings-l);
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scrollbar-width: none
}

.cards-slider-tabs::-webkit-scrollbar {
    height: 0;
    width: 0;
    opacity: 0;
    color: transparent;
    background-color: transparent;
    display: none
}

.cards-slider-tabs::-webkit-scrollbar-thumb, .cards-slider-tabs::-webkit-scrollbar-track {
    background: transparent;
    display: none
}

.cards-slider-tabs__item {
    position: relative;
    padding: var(--universal-spacings-xs) 0 13px 0;
    color: var(--tabs-d-text-default);
    white-space: nowrap;
    scroll-snap-align: start;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .7px
}

@media (min-width: 640px) {
    .cards-slider-tabs__item {
        padding: var(--universal-spacings-s) 0 15px 0
    }
}

@media (min-width: 1628px) {
    .cards-slider-tabs__item {
        padding: var(--universal-spacings-m) 0 19px 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-transform: uppercase
    }
}

.cards-slider-tabs__item:hover {
    color: var(--tabs-d-text-hover)
}

.cards-slider-tabs__item.active {
    color: var(--tabs-d-text-selected)
}

.cards-slider-tabs__item.active:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--borders-c)
}

.games-list-with-tabs:last-child .games-slider-wrap {
    margin-bottom: 0
}

.spin-banner {
    position: relative;
    height: 64px;
    padding: 5px 91px 5px var(--universal-spacings-l);
    border-radius: var(--roundings-m);
    border: 3px solid var(--colors-global-primary-1);
    background: var(--gradient-c);
    cursor: pointer
}

@media (min-width: 640px) {
    .spin-banner {
        height: 80px;
        padding: 13px 116px 13px var(--universal-spacings-xl)
    }
}

@media (min-width: 1628px) {
    .spin-banner {
        height: 114px;
        padding: 21px 108px 21px var(--universal-spacings-2xl)
    }
}

.spin-banner__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px
}

@media (min-width: 640px) {
    .spin-banner__title {
        font-size: 18px;
        line-height: 24px;
        font-weight: 600
    }
}

@media (min-width: 1628px) {
    .spin-banner__title {
        font-size: 22px;
        font-weight: 700;
        line-height: 32px
    }
}

.spin-banner__wheel {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 114px;
    height: 86px
}

@media (min-width: 640px) {
    .spin-banner__wheel {
        width: 132px;
        height: 100px
    }
}

@media (min-width: 1628px) {
    .spin-banner__wheel {
        width: 175px;
        height: 132px
    }
}

.spin-banner__wheel-circle {
    position: absolute;
    right: -17px;
    bottom: -34px;
    width: 120px;
    height: 120px;
    animation: rotateWheel 2s ease-in-out infinite alternate;
    transform-origin: center center
}

@media (min-width: 640px) {
    .spin-banner__wheel-circle {
        right: -21px;
        bottom: -40px;
        width: 140px;
        height: 140px
    }
}

@media (min-width: 1628px) {
    .spin-banner__wheel-circle {
        right: -27px;
        bottom: -52px;
        width: 184px;
        height: 184px
    }
}

@keyframes rotateWheel {
    0% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(15deg)
    }
    to {
        transform: rotate(-15deg)
    }
}

.spin-banner__wheel-button {
    position: absolute;
    right: 19px;
    bottom: 5px;
    width: 47px;
    height: 47px
}

@media (min-width: 640px) {
    .spin-banner__wheel-button {
        right: 21px;
        bottom: 6px;
        width: 54px;
        height: 54px
    }
}

@media (min-width: 1628px) {
    .spin-banner__wheel-button {
        right: 27px;
        bottom: 7px;
        width: 72px;
        height: 72px
    }
}

.spin-banner__wheel-coin--small {
    position: absolute;
    left: -1px;
    top: 6px;
    width: 25px;
    height: 25px
}

@media (min-width: 640px) {
    .spin-banner__wheel-coin--small {
        left: 0;
        top: 7px;
        width: 29px;
        height: 29px
    }
}

@media (min-width: 1628px) {
    .spin-banner__wheel-coin--small {
        left: -1px;
        top: 9px;
        width: 38px;
        height: 38px
    }
}

.spin-banner__wheel-coin--big {
    position: absolute;
    left: 7px;
    bottom: -11px;
    width: 36px;
    height: 36px
}

@media (min-width: 640px) {
    .spin-banner__wheel-coin--big {
        left: 8px;
        bottom: -12px;
        width: 41px;
        height: 41px
    }
}

@media (min-width: 1628px) {
    .spin-banner__wheel-coin--big {
        left: 11px;
        bottom: -16px;
        width: 54px;
        height: 54px
    }
}

@media (min-width: 640px) {
    .second-level-banners {
        padding-bottom: var(--universal-spacings-3xl)
    }
}

@media (min-width: 1140px) {
    .second-level-banners {
        margin-top: calc(var(--universal-spacings-xl) * -1);
        padding-bottom: calc(var(--spacings-2xl) - 20px)
    }
}

@media (min-width: 1628px) {
    .second-level-banners {
        margin-top: -18px
    }
}

.second-level-banners-wr {
    position: relative
}

@media (min-width: 1140px)and (max-width: 1627px) {
    .second-level-banners-wr {
        overflow: hidden
    }
}

.second-level-banners__inner {
    display: flex;
    gap: var(--spacings-xl)
}

@media (max-width: 1139px) {
    .second-level-banners__inner {
        margin: 0 calc(var(--spacings-2xl) * -1);
        padding: 0 var(--spacings-2xl) var(--spacings-2xl);
        overflow-x: auto;
        scrollbar-width: none
    }

    .second-level-banners__inner::-webkit-scrollbar {
        height: 0;
        width: 0;
        opacity: 0;
        color: transparent;
        background-color: transparent;
        display: none
    }

    .second-level-banners__inner::-webkit-scrollbar-thumb, .second-level-banners__inner::-webkit-scrollbar-track {
        background: transparent;
        display: none
    }
}

@media (min-width: 1140px) {
    .second-level-banners__inner {
        gap: 0
    }
}

.second-level-banners__card-wr {
    flex-shrink: 0;
    width: 212px;
    padding-top: 22px
}

@media (min-width: 640px) {
    .second-level-banners__card-wr {
        width: 240px;
        padding-top: 20px
    }
}

@media (min-width: 1140px) {
    .second-level-banners__card-wr {
        padding-bottom: 20px
    }
}

@media (min-width: 1628px) {
    .second-level-banners__card-wr {
        padding-top: 18px;
        width: 300px
    }
}

.second-level-banners__card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 64px;
    padding: 8px 99px 8px 16px;
    border-radius: var(--roundings-m);
    background-color: #b735f4;
    box-shadow: var(--light-gray-shadow);
    cursor: pointer
}

@media (min-width: 640px) {
    .second-level-banners__card {
        min-height: 80px;
        padding: 16px 116px 16px 20px
    }
}

@media (min-width: 1628px) {
    .second-level-banners__card {
        min-height: 114px;
        padding: 25px 192px 25px 21px
    }
}

.second-level-banners__card--withdrawal {
    background-color: #6735f4
}

.second-level-banners__card--cashback, .second-level-banners__card--random_game {
    background-color: #00ae26
}

.second-level-banners__card--bonus {
    background-color: var(--colors-brand-d)
}

.second-level-banners__card--referrals {
    background-color: var(--colors-brand-c)
}

.second-level-banners__img-wr {
    position: absolute;
    z-index: 1;
    width: 86px;
    height: 86px;
    flex-shrink: 0;
    overflow: hidden;
    right: 11px;
    bottom: 0
}

@media (min-width: 640px) {
    .second-level-banners__img-wr {
        width: 100px;
        height: 100px;
        right: 6px
    }
}

@media (min-width: 1140px) {
    .second-level-banners__img-wr {
        right: 16px;
        transition: all .2s ease-out
    }
}

@media (min-width: 1628px) {
    .second-level-banners__img-wr {
        width: 132px;
        height: 132px
    }
}

@media (min-width: 1920px) {
    .second-level-banners__img-wr {
        right: 14px
    }
}

.second-level-banners__center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex-grow: 1;
    z-index: 2
}

@media (min-width: 640px) {
    .second-level-banners__center {
        gap: 6px
    }
}

@media (min-width: 1140px) {
    .second-level-banners__center {
        gap: 8px
    }
}

.second-level-banners__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

@media (max-width: 639px) {
    .second-level-banners__title {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px
    }
}

@media (min-width: 640px) {
    .second-level-banners__title {
        font-size: 18px;
        line-height: 24px;
        font-weight: 600
    }
}

@media (min-width: 1628px) {
    .second-level-banners__title {
        font-size: 22px;
        font-weight: 700;
        line-height: 32px
    }
}

.second-level-banners__desc {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--gray-400);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.second-level-banners__desc:empty {
    display: none
}

@media (min-width: 640px) {
    .second-level-banners__desc {
        margin-bottom: auto;
        padding-bottom: 14px;
        line-height: 20px
    }
}

@media (min-width: 1140px) {
    .second-level-banners__desc {
        padding-bottom: 19px;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px
    }
}

.second-level-banners__next, .second-level-banners__prev {
    position: absolute;
    top: 50%;
    z-index: 2;
    visibility: visible;
    color: var(--borders-c);
    background-color: var(--backgrounds-a);
    opacity: 0
}

.second-level-banners__next.swiper-button-disabled, .second-level-banners__prev.swiper-button-disabled {
    pointer-events: none;
    opacity: 0 !important
}

@media (min-width: 1140px)and (max-width: 1627px) {
    .second-level-banners__next:after, .second-level-banners__prev:after {
        content: "";
        position: absolute;
        width: 120px;
        height: 137px;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1
    }
}

.second-level-banners__prev {
    left: 0;
    transform: translate(-50%, -50%)
}

@media (min-width: 1140px)and (max-width: 1627px) {
    .second-level-banners__prev {
        transform: translateY(-50%)
    }

    .second-level-banners__prev:after {
        background: linear-gradient(90deg, #000, transparent);
        left: -36px
    }
}

.second-level-banners__next {
    right: 0;
    transform: translate(50%, -50%)
}

@media (min-width: 1140px)and (max-width: 1627px) {
    .second-level-banners__next {
        transform: translateY(-50%)
    }

    .second-level-banners__next:after {
        background: linear-gradient(270deg, #000, transparent);
        right: -36px
    }
}

.second-level-banners__spin-banner {
    overflow: hidden
}

@media (min-width: 1140px) {
    .second-level-banners__spin-banner {
        padding-bottom: 0
    }
}

.buttons-app__list {
    display: flex;
    justify-content: center;
    gap: var(--spacings-s)
}

.main-footer__buttons-app .buttons-app__list {
    gap: var(--universal-spacings-m)
}

.buttons-app__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    min-height: 48px;
    border-radius: var(--roundings-s);
    background-color: var(--buttons-accent-a-default);
    color: var(--text-text-invert)
}

@media (min-width: 640px)and (max-width: 1139px) {
    .buttons-app__link {
        min-width: 126px
    }
}

@media (min-width: 1628px) {
    .buttons-app__link {
        min-height: 64px
    }
}

.buttons-app__item-icon-wr {
    flex-shrink: 0;
    margin-right: 6px
}

@media (min-width: 1628px) {
    .buttons-app__item-icon-wr {
        margin-right: 8px
    }
}

.buttons-app__item-icon {
    height: auto;
    color: var(--text-text-invert)
}

.buttons-app__item-icon--ios {
    width: 20px
}

@media (min-width: 1628px) {
    .buttons-app__item-icon--ios {
        width: 25px
    }
}

.buttons-app__item-icon--android {
    width: 19px
}

@media (min-width: 1628px) {
    .buttons-app__item-icon--android {
        width: 23px
    }
}

.buttons-app__item {
    width: 100%;
    max-width: 200px
}

.buttons-app__item-text {
    color: var(--text-text-invert);
    font-size: 10px;
    font-weight: 600;
    line-height: 12px
}

.buttons-app__item-text span {
    display: block;
    margin-top: -2px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

@media (min-width: 1628px) {
    .buttons-app__item-text {
        font-size: 12px;
        font-weight: 600;
        line-height: 20px
    }

    .buttons-app__item-text span {
        font-size: 18px;
        line-height: 24px;
        font-weight: 700
    }
}

.current-local-time {
    display: flex;
    flex-direction: column
}

.current-local-time__title {
    color: var(--text-description-a);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.current-local-time__count {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.main-footer__current-local-time .current-local-time__count {
    color: var(--text-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px
}

.main-footer {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: var(--spacings-3xl)
}

@media (max-width: 1139px) {
    .main-footer:before {
        content: "";
        position: absolute;
        left: -16px;
        right: -16px;
        height: 1px;
        background-color: var(--borders-b)
    }
}

@media (min-width: 640px) {
    .main-footer:before {
        left: -24px;
        right: -24px
    }
}

.main-footer__wrapper {
    display: flex;
    flex-direction: column
}

.main-footer__row--payment-list {
    padding: var(--universal-spacings-2xl) 0
}

@media (min-width: 1140px) {
    .main-footer__row--payment-list {
        margin: 0 -24px;
        padding: var(--universal-spacings-2xl);
        background: var(--gradient-c)
    }
}

@media (min-width: 1628px) {
    .main-footer__row--payment-list {
        margin: 0 -32px;
        padding: var(--universal-spacings-3xl)
    }
}

.main-footer__menu-col {
    display: flex;
    flex-direction: column
}

@media (min-width: 640px) {
    .main-footer__menu-col {
        flex: 1
    }
}

@media (min-width: 1140px) {
    .main-footer__menu-col:first-of-type {
        margin-right: 24px
    }
}

@media (min-width: 1628px) {
    .main-footer__menu-col:first-of-type, .main-footer__menu-col:nth-of-type(2):not(.main-footer__menu-col--last) {
        margin-right: 32px
    }
}

.main-footer__menu-col--last {
    gap: var(--universal-spacings-2xl);
    padding: var(--universal-spacings-2xl) var(--universal-spacings-l)
}

@media (max-width: 1139px) {
    .main-footer__menu-col--last {
        order: -1;
        flex-basis: 100%;
        margin-bottom: var(--spacings-2xl);
        border-radius: var(--roundings-s);
        background-color: var(--backgrounds-b)
    }

    .main-footer__menu-col--last:empty {
        display: none
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .main-footer__menu-col--last {
        flex-direction: row;
        gap: 12px;
        padding: var(--universal-spacings-2xl)
    }
}

@media (min-width: 1140px) {
    .main-footer__menu-col--last {
        flex: 0 0 332px;
        flex-direction: column;
        margin-left: 40px;
        padding: 0
    }
}

@media (min-width: 1628px) {
    .main-footer__menu-col--last {
        flex: 0 0 342px;
        gap: var(--spacings-2xl);
        margin: 0 0 0 var(--universal-spacings-6xl)
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .main-footer__app {
        flex: 1
    }
}

@media (min-width: 1140px) {
    .main-footer__app {
        order: 0
    }
}

.main-footer__app-title {
    margin-bottom: var(--spacings-s);
    text-align: center;
    color: var(--text-description-a);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

@media (min-width: 1140px) {
    .main-footer__app-title {
        text-align: left
    }
}

@media (min-width: 1628px) {
    .main-footer__app-title {
        margin-bottom: var(--spacings-m)
    }
}

.main-footer__menu {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--universal-spacings-xl)
}

@media (min-width: 640px) {
    .main-footer__menu {
        flex-direction: row;
        gap: 0 12px;
        flex-wrap: wrap;
        margin-bottom: var(--universal-spacings-2xl)
    }
}

@media (min-width: 1140px) {
    .main-footer__menu {
        gap: 0;
        margin: 0 -24px;
        padding: var(--universal-spacings-4xl);
        background-color: var(--backgrounds-b)
    }
}

@media (min-width: 1628px) {
    .main-footer__menu {
        margin: 0 -32px;
        padding: var(--universal-spacings-5xl) 120px
    }
}

.main-footer__menu-link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: var(--universal-spacings-l) var(--universal-spacings-l);
    background-color: var(--backgrounds-b);
    color: var(--links-b-default);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .6px
}

.main-footer__menu-link:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--borders-a)
}

@media (max-width: 639px) {
    .main-footer__menu-col:first-child .main-footer__menu-item:first-child .main-footer__menu-link {
        border-radius: var(--roundings-m) var(--roundings-m) 0 0
    }

    .main-footer__menu-col:nth-child(3) .main-footer__menu-item:last-child .main-footer__menu-link {
        border-radius: 0 0 var(--roundings-m) var(--roundings-m)
    }

    .main-footer__menu-col:nth-child(3) .main-footer__menu-item:last-child .main-footer__menu-link:before {
        content: none
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .main-footer__menu-col:first-child .main-footer__menu-item:last-child .main-footer__menu-link, .main-footer__menu-col:nth-child(2) .main-footer__menu-item:last-child .main-footer__menu-link {
        border-radius: 0 0 var(--roundings-m) var(--roundings-m)
    }

    .main-footer__menu-col:first-child .main-footer__menu-item:last-child .main-footer__menu-link:before, .main-footer__menu-col:nth-child(2) .main-footer__menu-item:last-child .main-footer__menu-link:before {
        content: none
    }

    .main-footer__menu-col:first-child .main-footer__menu-item:first-child .main-footer__menu-link, .main-footer__menu-col:nth-child(2) .main-footer__menu-item:first-child .main-footer__menu-link {
        border-radius: var(--roundings-m) var(--roundings-m) 0 0
    }
}

@media (min-width: 1140px) {
    .main-footer__menu-link {
        min-height: 0;
        padding: 0
    }

    .main-footer__menu-link:before {
        content: none
    }
}

@media (min-width: 1628px) {
    .main-footer__menu-link {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        text-transform: uppercase;
        letter-spacing: .7px
    }
}

@media (min-width: 1140px) {
    .main-footer__menu-logo {
        width: 69px;
        flex-shrink: 0;
        margin-right: 40px
    }
}

@media (min-width: 1628px) {
    .main-footer__menu-logo {
        width: 81px;
        margin-right: var(--universal-spacings-6xl)
    }
}

@media (min-width: 1140px) {
    .main-footer__menu-item {
        margin-bottom: 24px
    }

    .main-footer__menu-item:last-child {
        margin-bottom: 0
    }
}

.main-footer__license {
    display: flex;
    flex-direction: column
}

@media (min-width: 640px) {
    .main-footer__license {
        flex-direction: row;
        gap: var(--universal-spacings-xl)
    }
}

@media (min-width: 1140px) {
    .main-footer__license {
        margin: 0 calc(var(--spacings-2xl) * -1);
        padding: var(--universal-spacings-4xl)
    }
}

@media (min-width: 1628px) {
    .main-footer__license {
        padding: var(--universal-spacings-4xl) 120px;
        gap: var(--spacings-l)
    }
}

.main-footer__bottom {
    position: relative;
    margin: var(--universal-spacings-xl) 0 calc(var(--bottom-menu-height) + var(--universal-spacings-xl));
    padding-top: var(--universal-spacings-xl)
}

.main-footer__bottom:before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    right: -16px;
    height: 1px;
    background-color: hsla(0, 0%, 100%, .2)
}

@media (min-width: 640px) {
    .main-footer__bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
        margin: var(--universal-spacings-2xl) 0 calc(var(--bottom-menu-height) + var(--universal-spacings-2xl));
        padding-top: var(--universal-spacings-2xl)
    }

    .main-footer__bottom:before {
        left: -24px;
        right: -24px
    }
}

@media (min-width: 1140px) {
    .main-footer__bottom {
        margin: 0 -24px;
        padding: var(--spacings-xl) var(--universal-spacings-4xl);
        background-color: var(--backgrounds-b)
    }

    .main-footer__bottom:before {
        content: none
    }
}

@media (min-width: 1628px) {
    .main-footer__bottom {
        margin: 0 -32px;
        padding: var(--universal-spacings-3xl) 120px
    }
}

.main-footer__gamblers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--universal-spacings-3xl)
}

@media (max-width: 639px) {
    .main-footer__gamblers {
        margin-bottom: 24px
    }
}

@media (min-width: 1140px) {
    .main-footer__gamblers {
        gap: var(--universal-spacings-2xl)
    }
}

@media (min-width: 1628px) {
    .main-footer__gamblers {
        gap: 32px
    }
}

.main-footer__gamblers-item {
    display: flex;
    height: 36px
}

@media (min-width: 1628px) {
    .main-footer__gamblers-item {
        height: 40px
    }
}

.main-footer__copyright {
    color: var(--text-description-a);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

@media (min-width: 640px)and (max-width: 1139px) {
    .main-footer__copyright {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px
    }
}

@media (min-width: 1628px) {
    .main-footer__copyright {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px
    }
}

.main-footer__license-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 85px;
    margin: 0 auto var(--universal-spacings-l);
    cursor: pointer
}

@media (min-width: 640px) {
    .main-footer__license-img {
        margin: 0
    }
}

.main-footer__license-text {
    color: var(--text-description-a);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px
}

@media (min-width: 1628px) {
    .main-footer__license-text {
        font-size: 14px
    }
}

@media (max-width: 1139px) {
    .main-footer__current-local-time {
        min-width: 76px;
        border-right: 1px solid var(--borders-a)
    }
}

@media (min-width: 1140px) {
    .main-footer__current-local-time:not(.webview .main-footer__current-local-time) {
        order: 2;
        padding-top: var(--spacings-2xl);
        border-top: 1px solid var(--borders-a)
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .main-footer__social-links {
        padding-right: 12px
    }
}

@media (min-width: 1140px) {
    .main-footer__social-links {
        order: 1
    }
}

@keyframes blickSkeleton {
    0% {
        transform: translate(-200%, -50%)
    }
    to {
        transform: translate(200%, -50%)
    }
}

@keyframes blick {
    0% {
        transform: translate(-200%, -50%)
    }
    to {
        transform: translate(200%, -50%)
    }
}

@keyframes RecordWinningsItemAnimation {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.record-winnings {
    padding-bottom: var(--spacings-2xl)
}

@media (min-width: 640px) {
    .record-winnings {
        padding-bottom: var(--spacings-3xl)
    }
}

.main__inner-sidebar .record-winnings {
    padding-bottom: 0
}

.record-winnings__body {
    background: var(--backgrounds-b);
    padding: var(--universal-spacings-xl);
    border-radius: 0 9px 9px 9px
}

@media (min-width: 1628px) {
    .record-winnings__body {
        display: flex;
        align-items: flex-start;
        padding: var(--universal-spacings-2xl);
        border-radius: 0 var(--universal-spacings-l) var(--universal-spacings-l) var(--universal-spacings-l)
    }
}

.record-winnings__container {
    position: relative;
    width: 100%
}

.record-winnings__list {
    max-height: 272px;
    overflow: hidden
}

@media (min-width: 640px)and (max-width: 1139px) {
    .record-winnings__list {
        columns: 2;
        column-rule: solid 1px var(--borders-a);
        column-gap: 40px
    }
}

@media (min-width: 1628px) {
    .record-winnings__list {
        max-height: 380px
    }
}

.record-winnings__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacings-xl);
    overflow: hidden;
    padding: var(--universal-spacings-3xs) var(--universal-spacings-s) var(--universal-spacings-3xs) var(--universal-spacings-3xs);
    background-color: var(--backgrounds-b);
    transition: all .2s ease-out
}

.record-winnings__item:last-child {
    margin-bottom: 0
}

@media (min-width: 640px) {
    .record-winnings__item {
        margin-bottom: var(--universal-spacings-m)
    }
}

@media (min-width: 1628px) {
    .record-winnings__item {
        padding: var(--universal-spacings-2xs) var(--universal-spacings-m) var(--universal-spacings-2xs) var(--universal-spacings-2xs);
        margin-bottom: var(--universal-spacings-xl)
    }
}

.record-winnings__item-figure {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    gap: var(--universal-spacings-xs);
    margin: 0;
    overflow: hidden
}

@media (min-width: 640px) {
    .record-winnings__item-figure {
        gap: var(--universal-spacings-s)
    }
}

@media (min-width: 1628px) {
    .record-winnings__item-figure {
        gap: var(--universal-spacings-m)
    }
}

.record-winnings__item-caption {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.record-winnings__item-image-container {
    position: relative;
    border-radius: var(--universal-spacings-2xs);
    overflow: hidden;
    flex-shrink: 0
}

.record-winnings__item-image-container-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--colors-base-black-70);
    border-radius: inherit;
    transition: all .2s ease-out;
    opacity: 0
}

.record-winnings__item-image-container-ic {
    width: 21px;
    height: 24px;
    color: var(--white)
}

.record-winnings__item-image {
    width: 82px;
    height: 55px;
    object-fit: cover;
    flex-shrink: 0
}

@media (min-width: 1628px) {
    .record-winnings__item-image {
        width: 108px;
        height: 72px
    }
}

.record-winnings__item-title {
    max-width: 100%
}

.record-winnings__item-title-container {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--text-text);
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px
}

@media (min-width: 1628px) {
    .record-winnings__item-title-container {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px
    }
}

.record-winnings__item-description {
    display: flex;
    width: 100%
}

.record-winnings__item-nickname {
    display: block;
    color: var(--text-description-a);
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

@media (min-width: 1628px) {
    .record-winnings__item-nickname {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px
    }
}

.record-winnings__item-aside {
    flex-shrink: 0;
    margin-left: var(--universal-spacings-s);
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

@media (min-width: 640px) {
    .record-winnings__item-aside {
        margin-left: var(--universal-spacings-m)
    }
}

@media (min-width: 1628px) {
    .record-winnings__item-aside {
        margin-left: var(--universal-spacings-l)
    }
}

.record-winnings__item-win {
    color: var(--text-accent-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

@media (min-width: 1628px) {
    .record-winnings__item-win {
        font-size: 20px;
        font-weight: 700;
        line-height: 28px
    }
}

.record-winnings__tabs {
    display: flex
}

.record-winnings__tabs-container {
    display: flex;
    width: 100%
}

.record-winnings__tabs-item {
    border: none;
    background-color: transparent;
    -webkit-appearance: none;
    display: flex;
    height: 54px;
    padding: 7px var(--universal-spacings-m);
    align-items: center;
    gap: var(--spacings-xs);
    color: var(--tabs-c-text-default);
    text-transform: uppercase;
    border-radius: var(--roundings-m) var(--roundings-m) 0 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .6px;
    transition: all .2s ease-out;
    flex: 1 1 50%
}

@media (min-width: 640px)and (max-width: 1139px) {
    .record-winnings__tabs-item {
        padding: 17px var(--universal-spacings-m)
    }
}

@media (min-width: 1628px) {
    .record-winnings__tabs-item {
        height: 72px;
        padding: var(--universal-spacings-l) var(--universal-spacings-2xl);
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: .7px
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .record-winnings__tabs-item {
        justify-content: center
    }

    .record-winnings__tabs-item br {
        display: none
    }
}

.record-winnings__tabs-item-wr {
    display: flex;
    align-items: flex-start;
    gap: var(--universal-spacings-3xs)
}

@media (min-width: 1628px) {
    .record-winnings__tabs-item-wr {
        gap: var(--universal-spacings-s)
    }
}

.record-winnings__tabs-item-icon {
    min-width: 20px;
    height: 20px;
    padding: var(--universal-spacings-3xs);
    color: var(--icons-a)
}

.record-winnings__tabs-item--active {
    color: var(--tabs-c-text-selected);
    background-color: var(--tabs-c-background-selected)
}

.user-top {
    display: flex;
    align-items: center
}

.user-top-wr {
    display: flex;
    gap: var(--spacings-xs)
}

@media (min-width: 1140px) {
    .user-top-wr {
        gap: var(--spacings-xl)
    }
}

 .user-top__no-auth {
    display: flex;
    align-items: center;
    gap: var(--spacings-s)
}

@media (min-width: 1140px) {
    .user-top__no-auth {
        order: 1;
        margin-left: 16px
    }
}

.user-top__login, .user-top__registration {
    display: flex
}

.user-top__registration {
    order: -1
}

.user-top__login-btn, .user-top__registration-btn {
    transition: background-color .2s ease-out, border .2s ease-out
}

.collections-menu-wr {
    min-height: 40px;
    width: calc(100% + var(--spacings-2xl) * 2);
    margin: 0 calc(var(--spacings-2xl) * -1) 2px
}

.collections-menu {
    position: relative;
    width: 100%;
    height: 32px;
    background: var(--gradient-c);
    display: flex;
    justify-content: center;
    transition: all .2s ease-out
}

.collections-menu.collections-menu--fixed {
    position: fixed;
    width: 100% !important;
    margin: 0 !important;
    top: 52px;
    left: 0;
    right: 0
}

.collections-menu.collections-menu--main {
    z-index: 30
}

@media (max-width: 639px) {
    .collections-menu {
        height: 40px
    }

    .collections-menu.collections-menu--fixed {
        top: var(--topbar-height-mob)
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .collections-menu {
        height: 40px
    }

    .collections-menu.collections-menu--fixed {
        top: var(--topbar-height-tablet)
    }
}

@media (min-width: 1628px) {
    .collections-menu {
        height: 44px
    }

    .collections-menu.collections-menu--fixed {
        top: var(--topbar-height-huge)
    }
}

.collections-menu__list {
    display: flex;
    align-items: center
}

@media (max-width: 1139px) {
    .collections-menu__list {
        overflow-x: auto;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .collections-menu__list::-webkit-scrollbar {
        display: none
    }
}

@media (min-width: 1140px) {
    .collections-menu__list {
        padding: 0 var(--universal-spacings-s)
    }
}

.collections-menu__link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    color: var(--tabs-b-text-default);
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .6px;
    transition: all .2s ease-out
}

.collections-menu__link.active, .collections-menu__link:active {
    background: var(--tabs-b-background-hover)
}

.collections-menu__link.active {
    color: var(--tabs-b-text-selected)
}

@media (max-width: 1139px) {
    .collections-menu__link {
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: .7px
    }
}

@media (min-width: 1628px) {
    .collections-menu__link {
        padding: 0 24px;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: .8px
    }
}

.collections-menu__item {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    border-right: 1px solid var(--borders-a)
}

.collections-menu__item:last-child {
    border: none
}

.main-slider-banner {
    display: flex;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-image: url(/img/main-slider/main-slider-bg-mob.webp)
}

@media (min-width: 640px) {
    .main-slider-banner {
        background-image: url(/img/main-slider/main-slider-bg-tab.webp)
    }
}

@media (max-width: 1139px) {
    .main-slider-banner {
        margin: 0 calc(var(--spacings-2xl) * -1)
    }
}

@media (min-width: 1140px) {
    .main-slider-banner {
        margin-bottom: 12px;
        border-radius: var(--roundings-m);
        background-image: url(/img/main-slider/main-slider-bg-desk.webp)
    }
}

@media (min-width: 1628px) {
    .main-slider-banner {
        margin-bottom: 16px;
        border-radius: var(--roundings-l);
        background-image: url(/img/main-slider/main-slider-bg-huge.webp)
    }
}

.main-slider-banner__wr {
    position: relative;
    display: flex;
    align-items: center;
    width: 375px;
    min-height: 258px;
    margin: 0 auto
}

.main-slider-banner__wr:before {
    content: "";
    z-index: 1;
    top: 12px;
    width: 328px;
    height: 223px;
    background: url(../../../assets/462607/img/welcome-banner-mob.66aa0588.svg) no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    left: calc(50% + 42px)
}

@media (min-width: 640px) {
    .main-slider-banner__wr:before {
        top: 62px;
        left: calc(50% + 66px);
        width: 472px;
        height: 264px;
        background-image: url(../../../assets/462607/img/welcome-banner-tab.939ca520.svg)
    }
}

@media (min-width: 1140px) {
    .main-slider-banner__wr:before {
        top: 30px;
        left: calc(50% - 30px);
        width: 527px;
        height: 288px;
        background-image: url(../../../assets/462607/img/welcome-banner-desk.599b9783.svg)
    }
}

@media (min-width: 1628px) {
    .main-slider-banner__wr:before {
        top: 85px;
        width: 665px;
        height: 363px;
        background-image: url(../../../assets/462607/img/welcome-banner.f1369627.svg)
    }
}

@media (min-width: 640px) {
    .main-slider-banner__wr {
        width: 640px;
        min-height: 417px
    }
}

@media (min-width: 640px)and (max-width: 1139px) {
    .main-slider-banner__wr:after {
        content: "";
        position: absolute;
        z-index: 2;
        top: 0;
        right: 10px;
        width: 164px;
        height: 164px;
        background-image: url(/img/main-slider/main-slider-cherry.png);
        background-repeat: no-repeat
    }
}

@media (min-width: 1140px) {
    .main-slider-banner__wr {
        width: 1092px;
        min-height: 377px
    }
}

@media (min-width: 1628px) {
    .main-slider-banner__wr {
        width: 1564px;
        min-height: 553px
    }
}

.main-slider-banner__video-wr {
    display: flex;
    position: absolute;
    left: -77px;
    width: 258px;
    height: 258px
}

@media (min-width: 640px) {
    .main-slider-banner__video-wr {
        left: -90px;
        bottom: 0;
        width: 433px;
        height: 433px
    }
}

@media (min-width: 1140px) {
    .main-slider-banner__video-wr {
        left: 20px;
        width: 388px;
        height: 388px
    }
}

@media (min-width: 1628px) {
    .main-slider-banner__video-wr {
        left: 104px;
        width: 564px;
        height: 564px
    }
}

.main-slider-banner__video {
    width: -webkit-max-content;
    width: max-content;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.main-slider-banner__text-wr {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 264px;
    height: auto;
    max-height: 100%;
    position: absolute;
    z-index: 2;
    right: 8px
}

@media (min-width: 640px) {
    .main-slider-banner__text-wr {
        margin-top: -9px;
        right: 33px;
        width: 402px
    }
}

@media (min-width: 1140px) {
    .main-slider-banner__text-wr {
        margin-top: -20px;
        right: 303px;
        width: 491px
    }
}

@media (min-width: 1628px) {
    .main-slider-banner__text-wr {
        margin-top: -14px;
        right: 497px;
        width: 566px
    }
}

.main-slider-banner__text {
    position: relative;
    width: 100%;
    height: 0;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    visibility: hidden;
    animation: types 3s steps(20) forwards
}

.main-slider-banner__text:nth-child(2) {
    animation-delay: 1.5s;
    margin-bottom: 8px
}

.main-slider-banner__text:nth-child(3), .main-slider-banner__text:nth-child(4) {
    display: flex;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    animation-delay: 4s
}

.main-slider-banner__text:nth-child(4) {
    animation-delay: 5.5s
}

@keyframes types {
    0% {
        width: 0
    }
    10% {
        height: auto
    }
    to {
        width: 100%;
        height: auto;
        visibility: visible
    }
}

@media (min-width: 640px) {
    .main-slider-banner__text {
        font-size: 20px;
        line-height: 28px
    }

    .main-slider-banner__text:nth-child(3), .main-slider-banner__text:nth-child(4) {
        font-size: 20px;
        line-height: 36px
    }
}

@media (min-width: 1628px) {
    .main-slider-banner__text {
        font-size: 26px;
        line-height: 42px
    }

    .main-slider-banner__text:nth-child(2) {
        margin-bottom: 18px
    }

    .main-slider-banner__text:nth-child(3), .main-slider-banner__text:nth-child(4) {
        font-size: 26px;
        line-height: 42px
    }
}

.main-slider-banner__number {
    font-size: 24px;
    line-height: 28px
}

@media (min-width: 640px) {
    .main-slider-banner__number {
        font-size: 32px;
        line-height: 36px
    }
}

@media (min-width: 1628px) {
    .main-slider-banner__number {
        font-size: 40px;
        line-height: 42px
    }
}

.main-slider-banner__text-btn-wr {
    animation: showBtnBlock 7s forwards
}

@media (min-width: 640px) {
    .main-slider-banner__text-btn-wr {
        animation: showBtnBlock 6.5s forwards
    }
}

@keyframes showBtnBlock {
    0%, 99% {
        max-height: 0;
        overflow: hidden
    }
    to {
        max-height: 100%;
        overflow: visible
    }
}

.main-slider-banner__text-btn {
    position: relative;
    margin-top: 16px;
    overflow: hidden;
    transform: scale(1);
    animation: scaleBtn 3s ease-in infinite
}

.main-slider-banner__text-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 140px;
    opacity: .5;
    background: linear-gradient(179deg, hsla(0, 0%, 100%, 0) 1.25%, #fff 50%, hsla(0, 0%, 100%, 0) 98%);
    animation: blickBtn 3s ease-out infinite
}

@media (min-width: 640px) {
    .main-slider-banner__text-btn {
        margin-top: 22px
    }
}

@media (min-width: 1628px) {
    .main-slider-banner__text-btn {
        height: 52px;
        margin-top: 28px
    }
}

@keyframes blickBtn {
    0% {
        transform: translate(-200%, -25%) rotate(-68deg)
    }
    20% {
        transform: translate(250%, -25%) rotate(-68deg)
    }
    to {
        transform: translate(250%, -25%) rotate(-68deg)
    }
}

@keyframes scaleBtn {
    0% {
        background-color: var(--buttons-primary-default);
        transform: scale(1)
    }
    10% {
        background-color: var(--btn-primary-puls);
        transform: scale(1.05)
    }
    11% {
        background-color: var(--buttons-primary-default);
        transform: scale(1)
    }
    to {
        transform: scale(1)
    }
}

.main-slider-banner__img {
    position: absolute;
    bottom: -35px;
    right: 1px;
    width: 360px;
    height: 360px
}

@media (min-width: 1628px) {
    .main-slider-banner__img {
        bottom: -49px;
        right: 41px;
        width: 522px;
        height: 522px
    }
}

.green {
    color: var(--colors-global-accent-b-1)
}

.local-select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1
}

@media (max-width: 374px) {
    .local-select {
        display: none
    }
}

.user-top .local-select {
    margin-left: 12px
}

@media (min-width: 640px) {
    .user-top .local-select {
        margin-left: 16px
    }
}

.local-select__button {
    display: flex;
    align-items: center;
    cursor: pointer
}

.local-select__button-logo-wr {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 6px;
    border-radius: 50%;
    overflow: hidden
}

@media (min-width: 640px)and (max-width: 1139px) {
    .local-select__button-logo-wr {
        width: 32px;
        height: 32px;
        margin-right: 8px
    }
}

@media (min-width: 1140px) {
    .local-select__button-logo-wr {
        margin-right: 8px
    }
}

@media (min-width: 1628px) {
    .local-select__button-logo-wr {
        width: 32px;
        height: 32px
    }
}

.local-select__button-icon-wr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px
}

.local-select__button-icon {
    width: 16px;
    height: auto;
    color: var(--icons-a);
    transition: transform .2s ease-out
}

.social-links__title {
    margin-bottom: var(--spacings-s);
    text-align: center;
    color: var(--text-description-a);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.main__social-links .social-links__title {
    color: var(--colors-base-white);
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px
}

@media (min-width: 1140px) {
    .social-links__title {
        text-align: left
    }

    .main__social-links .social-links__title {
        text-align: center;
        text-transform: uppercase
    }
}

@media (min-width: 1628px) {
    .social-links__title {
        margin-bottom: var(--spacings-m)
    }

    .main__social-links .social-links__title {
        margin-bottom: 32px;
        font-size: 26px;
        font-weight: 600;
        line-height: 36px
    }
}

.social-links__list {
    display: flex;
    justify-content: center;
    gap: var(--universal-spacings-m)
}

@media (min-width: 1140px) {
    .social-links__list {
        justify-content: flex-start
    }

    .main__social-links .social-links__list {
        justify-content: center
    }
}

.social-links__link {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: var(--roundings-s);
    background: var(--backgrounds-a);
    color: var(--icons-e);
    transition: all .2s ease-out
}

.social-links__link--lg {
    width: 64px;
    height: 64px;
    padding: 14px
}

.social-links__ic {
    width: 24px;
    height: auto
}

.social-links__link--lg .social-links__ic {
    width: 36px
}

@media (min-width: 1140px) {

    @keyframes showPanel {
        0% {
            transform: translateX(50%)
        }
        to {
            transform: translateX(0)
        }
    }
}

@media (min-width: 1140px) {

    @keyframes showBonuses {
        0% {
            transform: translateX(-50%)
        }
        to {
            transform: translateX(0)
        }
    }
}

.payment-list {
    --item-height: 28px;
    --row-gap: var(--universal-spacings-3xl);
    --column-gap: var(--universal-spacings-4xl);
    --max-rows: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 0 var(--column-gap);
    max-height: calc((var(--item-height) + var(--row-gap)) * var(--max-rows) - var(--row-gap))
}

@media (min-width: 640px) {
    .payment-list {
        --item-height: 32px;
        --column-gap: var(--universal-spacings-5xl)
    }
}

@media (min-width: 1628px) {
    .payment-list {
        --item-height: 36px;
        --column-gap: 72px
    }
}

.payment-list--scrolled {
    --item-height: 24px;
    --column-gap: var(--universal-spacings-3xl);
    position: relative
}

@media (max-width: 1139px) {
    .payment-list--scrolled {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 var(--universal-spacings-2xl);
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .payment-list--scrolled::-webkit-scrollbar {
        display: none
    }
}

@media (min-width: 1140px) {
    .payment-list--scrolled {
        --item-height: 28px;
        --column-gap: var(--universal-spacings-5xl)
    }
}

@media (min-width: 1628px) {
    .payment-list--scrolled {
        --item-height: 32px;
        --column-gap: var(--universal-spacings-6xl)
    }
}

.payment-list__btn {
    display: block;
    padding: 0;
    border: none;
    background: none
}

.payment-list__img {
    width: auto;
    height: var(--item-height)
}

.payment-list__div {
    height: var(--row-gap);
    flex: 100% 0
}

.current-local-time {
    display: flex;
    flex-direction: column
}

.current-local-time__title {
    color: var(--text-description-a);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.current-local-time__count {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.main-footer__current-local-time .current-local-time__count {
    color: var(--text-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px
}

@media (max-width: 1139px) {
    .search {
        height: 100%
    }
}

@media (min-width: 1140px) {
    .search {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        position: fixed;
        top: 68px;
        z-index: 10005
    }
}

.bottom-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: var(--bottom-menu-height);
    z-index: 102
}

.bottom-menu__wrapper {
    position: relative;
    display: flex;
    height: 100%;
    background: var(--bottom-menu-gradient)
}

.bottom-menu__item {
    display: flex;
    flex: 1 1 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 7px;
    padding: 10px 0 19px 0;
    text-align: center;
    cursor: pointer
}

.bottom-menu__item--deposit {
    position: relative
}

.bottom-menu__item-ic-wr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px
}

.bottom-menu__item-ic {
    width: 20px;
    height: auto;
    color: var(--icons-b)
}

.bottom-menu__item--menu .bottom-menu__item-ic, .bottom-menu__item--providers .bottom-menu__item-ic, .bottom-menu__item--search .bottom-menu__item-ic {
    width: 24px
}

.bottom-menu__item-text {
    color: var(--text-description-a);
    word-break: break-word;
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.bottom-menu__item--deposit .bottom-menu__item-text {
    position: absolute;
    bottom: 19px
}

.bottom-menu__item-deposit {
    bottom: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}


@media (min-width: 1140px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 1139px) {
    .top-bar__center,
    .top-bar__search,
    .top-bar__search-btn-text,
    .main-slider-banner__img,
    .main-footer__menu-logo {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }


}

@media (max-width: 639px) {
    .games-slider__navigation {
        display: none;
    }
}

.top-bar__right {
    margin-right: var(--spacings-2xl);
}

.mb {
    margin-bottom: 25px;
}