@import url(https://fonts.googleapis.com/css2?family=Paytone+One&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Kanit:wght@900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Istok+Web&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:100,300,400,500,700,900);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700;800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Inter:400,600);

.slot-back-button {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 35px;
    position: fixed;
    top: 5px;
    width: 35px;
    z-index: 100
}

[dir=ltr] .slot-back-button {
    right: 50px
}

[dir=rtl] .slot-back-button {
    left: 50px
}

@media only screen and (max-width:767px) {
    .slot-back-button {
        display: none
    }
}

.slot-back-button__goBack {
    fill: #fff;
    height: 100%;
    width: 100%
}

.fullscreen-button {
    align-items: center;
    display: flex;
    height: 35px;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    top: 5px;
    width: 35px;
    z-index: 11
}

[dir=ltr] .fullscreen-button {
    right: 5px
}

[dir=rtl] .fullscreen-button {
    left: 5px
}

@media only screen and (max-width:767px) {
    .fullscreen-button {
        display: none
    }
}

.fullscreen-button__fullscreen-icon {
    align-items: center;
    -webkit-animation: shake 5s cubic-bezier(.36, .07, .19, .97) infinite;
    animation: shake 5s cubic-bezier(.36, .07, .19, .97) infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: pointer;
    display: flex;
    height: 80%;
    justify-content: center;
    position: relative;
    width: 80%
}

.fullscreen-button__fullscreen-icon * {
    fill: #fff
}

@-webkit-keyframes shake {

    14%,
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    2% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    4% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    6% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    8% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    10% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    12% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes shake {

    14%,
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    2% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    4% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    6% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    8% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    10% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    12% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.slot-frame {
    display: flex;
    height: calc(100vh - 3.5rem);
    min-height: 700px;
    min-width: 100%;
    width: 100%;
    z-index: 100
}

@media only screen and (max-width:767px) {
    .slot-frame {
        height: calc(100vh - 58px)
    }
}

.slot-frame__wrapper {
    align-items: flex-end;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    width: 100%
}

.slot-frame__iframe {
    background-size: cover;
    border: none;
    height: 100%;
    width: 100%
}

@media only screen and (max-width:1024px) {
    .slot-frame__iframe {
        display: flex;
        flex-grow: 1
    }
}

.spinner {
    background: rgba(0, 0, 0, .6);
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000
}

[dir=ltr] .spinner {
    left: 0
}

[dir=rtl] .spinner {
    right: 0
}

.spinner__wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    max-height: 100vh;
    position: relative;
    top: 0;
    width: 100%
}

.spinner__circle {
    -webkit-animation: h 2.5s linear 0s infinite normal;
    animation: h 2.5s linear 0s infinite normal;
    border: 3px solid transparent;
    border-radius: 100%;
    height: 90px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: all .5s ease-in-out;
    width: 90px
}

[dir=ltr] .spinner__circle {
    border-color: transparent #fcd301 transparent #d5d5d5
}

[dir=rtl] .spinner__circle {
    border-color: transparent #d5d5d5 transparent #fcd301
}

.spinner__label {
    -webkit-animation: i 2s linear 0s infinite normal;
    animation: i 2s linear 0s infinite normal;
    color: #fcd301;
    font-family: FontAwesome, sans-serif;
    font-size: .8em;
    font-weight: 700;
    opacity: 0;
    position: absolute;
    text-align: center;
    width: 90px
}

@-webkit-keyframes h {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes h {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes i {
    0% {
        opacity: 1
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes i {
    0% {
        opacity: 1
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.slot-redirect {
    height: 100vh;
    width: 100vw
}

.slider {
    width: 100%
}

.slider .swiper {
    height: 100%;
    width: 100%
}

.slider .swiper-pagination {
    align-items: center;
    display: flex;
    height: -webkit-min-content;
    height: min-content;
    justify-content: flex-end;
    position: absolute;
    top: 1.6rem !important;
    width: auto
}

[dir=ltr] .slider .swiper-pagination {
    padding-right: .875rem;
    right: 0
}

[dir=rtl] .slider .swiper-pagination {
    left: 0;
    padding-left: .875rem
}

@media only screen and (max-width:767px) {
    .slider .swiper-pagination {
        display: none !important
    }
}

.slider .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    height: .85rem;
    opacity: 1;
    transition: height .3s ease-in, width .3s ease-in;
    width: .85rem
}

[dir=ltr] .slider .swiper-pagination-bullet {
    margin-right: .025rem !important
}

[dir=rtl] .slider .swiper-pagination-bullet {
    margin-left: .025rem !important
}

.slider .swiper-pagination-bullet-active {
    background: #fff
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    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")
}

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

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

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    box-sizing: initial;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: ease;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    width: 100%;
    z-index: 1
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

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

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-backface-hidden .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

[dir=ltr] .swiper-3d .swiper-slide-shadow,
[dir=ltr] .swiper-3d .swiper-slide-shadow-bottom,
[dir=ltr] .swiper-3d .swiper-slide-shadow-left,
[dir=ltr] .swiper-3d .swiper-slide-shadow-right,
[dir=ltr] .swiper-3d .swiper-slide-shadow-top {
    left: 0
}

[dir=rtl] .swiper-3d .swiper-slide-shadow,
[dir=rtl] .swiper-3d .swiper-slide-shadow-bottom,
[dir=rtl] .swiper-3d .swiper-slide-shadow-left,
[dir=rtl] .swiper-3d .swiper-slide-shadow-right,
[dir=rtl] .swiper-3d .swiper-slide-shadow-top {
    right: 0
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

[dir=ltr] .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

[dir=ltr] .swiper-3d .swiper-slide-shadow-right,
[dir=rtl] .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

[dir=rtl] .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-css-mode>.swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.swiper-lazy-preloader {
    border: 4px solid #007aff;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    box-sizing: border-box;
    height: 42px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

[dir=ltr] .swiper-lazy-preloader {
    left: 50%;
    margin-left: -21px
}

[dir=rtl] .swiper-lazy-preloader {
    margin-right: -21px;
    right: 50%
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 8px;
    bottom: var(--swiper-pagination-bottom, 8px);
    top: auto;
    top: var(--swiper-pagination-top, auto);
    width: 100%
}

[dir=ltr] .swiper-horizontal>.swiper-pagination-bullets,
[dir=ltr] .swiper-pagination-bullets.swiper-pagination-horizontal,
[dir=ltr] .swiper-pagination-custom,
[dir=ltr] .swiper-pagination-fraction {
    left: 0
}

[dir=rtl] .swiper-horizontal>.swiper-pagination-bullets,
[dir=rtl] .swiper-pagination-bullets.swiper-pagination-horizontal,
[dir=rtl] .swiper-pagination-custom,
[dir=rtl] .swiper-pagination-fraction {
    right: 0
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    -webkit-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    background: #000;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: 50%;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    display: inline-block;
    height: 8px;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: .2;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
    width: 8px;
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background: var(--swiper-theme-color);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: 1;
    opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

[dir=ltr] .swiper-pagination-vertical.swiper-pagination-bullets,
[dir=ltr] .swiper-vertical>.swiper-pagination-bullets {
    left: auto;
    left: var(--swiper-pagination-left, auto);
    right: 8px;
    right: var(--swiper-pagination-right, 8px)
}

[dir=rtl] .swiper-pagination-vertical.swiper-pagination-bullets,
[dir=rtl] .swiper-vertical>.swiper-pagination-bullets {
    left: 8px;
    left: var(--swiper-pagination-right, 8px);
    right: auto;
    right: var(--swiper-pagination-left, auto)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: 6px 0;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    white-space: nowrap
}

[dir=ltr] .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
[dir=ltr] .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

[dir=rtl] .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
[dir=rtl] .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%)
}

[dir=ltr] .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
[dir=ltr] .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

[dir=rtl] .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
[dir=rtl] .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

[dir=ltr] .swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
[dir=ltr] :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

[dir=rtl] .swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
[dir=rtl] :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-pagination-fraction {
    color: inherit;
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-theme-color);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 100%
}

[dir=ltr] .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    left: 0;
    -webkit-transform-origin: left top;
    transform-origin: left top
}

[dir=rtl] .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    right: 0;
    -webkit-transform-origin: right top;
    transform-origin: right top
}

[dir=ltr] .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    transform-origin: right top
}

[dir=rtl] .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: left top;
    transform-origin: left top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 4px;
    height: var(--swiper-pagination-progressbar-size, 4px);
    top: 0;
    width: 100%
}

[dir=ltr] .swiper-horizontal>.swiper-pagination-progressbar,
[dir=ltr] .swiper-pagination-progressbar.swiper-pagination-horizontal,
[dir=ltr] .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
[dir=ltr] .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    left: 0
}

[dir=rtl] .swiper-horizontal>.swiper-pagination-progressbar,
[dir=rtl] .swiper-pagination-progressbar.swiper-pagination-horizontal,
[dir=rtl] .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
[dir=rtl] .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    right: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    height: 100%;
    top: 0;
    width: 4px;
    width: var(--swiper-pagination-progressbar-size, 4px)
}

[dir=ltr] .swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
[dir=ltr] .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
[dir=ltr] .swiper-pagination-progressbar.swiper-pagination-vertical,
[dir=ltr] .swiper-vertical>.swiper-pagination-progressbar {
    left: 0
}

[dir=rtl] .swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
[dir=rtl] .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
[dir=rtl] .swiper-pagination-progressbar.swiper-pagination-vertical,
[dir=rtl] .swiper-vertical>.swiper-pagination-progressbar {
    right: 0
}

.swiper-pagination-lock {
    display: none
}

.carousel-slider,
.slider-plug {
    position: relative;
    width: 100%
}

.carousel-slider {
    overflow: hidden
}

.carousel-slider__slide {
    display: block;
    position: relative;
    width: 100%
}

.carousel-slider img {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%
}

[dir=ltr] .carousel-slider img {
    left: 0
}

[dir=rtl] .carousel-slider img {
    right: 0
}

.carousel-slider__slider-container {
    height: 100%;
    width: 100%
}

.empty-favorites {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    grid-area: 1/1/5/5;
    height: 19.6rem;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    text-align: center;
    width: 100%
}

@media only screen and (max-width:767px) {
    .empty-favorites {
        grid-area: 1/1/3/3
    }

    .empty-favorites__title {
        font-size: 25px
    }
}

.empty-favorites__description {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 30px
}

@media only screen and (max-width:767px) {
    .empty-favorites__description {
        font-size: 16px
    }
}

.empty-favorites__icon-wrapper {
    margin-top: 5px
}

[dir=ltr] .empty-favorites__icon-wrapper {
    margin-left: 3px
}

[dir=rtl] .empty-favorites__icon-wrapper {
    margin-right: 3px
}

.loadable-image__container {
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

.loadable-image__container_loaded.loadable-image__container_forwardAnimationType_smallToBig {
    -webkit-animation: smallToBigForwardFrames .2s ease-in forwards;
    animation: smallToBigForwardFrames .2s ease-in forwards
}

@-webkit-keyframes smallToBigForwardFrames {
    0% {
        opacity: .95;
        scale: .85
    }

    to {
        opacity: 1;
        scale: 1
    }
}

@keyframes smallToBigForwardFrames {
    0% {
        opacity: .95;
        scale: .85
    }

    to {
        opacity: 1;
        scale: 1
    }
}

.loadable-image__container_loaded.loadable-image__container_forwardAnimationType_slide {
    -webkit-animation: slideForwardFrames .2s ease-in forwards;
    animation: slideForwardFrames .2s ease-in forwards
}

@-webkit-keyframes slideForwardFrames {
    0% {
        left: 150px;
        opacity: .95
    }

    to {
        left: 0;
        opacity: 1
    }
}

@keyframes slideForwardFrames {
    0% {
        left: 150px;
        opacity: .95
    }

    to {
        left: 0;
        opacity: 1
    }
}

.loadable-image__container_loaded.loadable-image__container_forwardAnimationType_appearance {
    -webkit-animation: appearanceForwardFrames .2s ease-in forwards;
    animation: appearanceForwardFrames .2s ease-in forwards
}

@-webkit-keyframes appearanceForwardFrames {
    0% {
        opacity: .1
    }

    to {
        opacity: 1
    }
}

.loadable-image__container_loaded.loadable-image__container_forwardAnimationType_default {
    -webkit-animation: defaultForwardFrames .2s ease-in forwards;
    animation: defaultForwardFrames .2s ease-in forwards
}

@-webkit-keyframes defaultForwardFrames {
    0% {
        opacity: 0;
        scale: 1
    }

    to {
        opacity: 1;
        scale: 1
    }
}

.loadable-image__container_loaded.loadable-image__container_backwardAnimationType_smallToBig {
    -webkit-animation: smallToBigForwardFrames .2s ease-in forwards;
    animation: smallToBigForwardFrames .2s ease-in forwards
}

@-webkit-keyframes smallToBigBackwardFrames {
    0% {
        opacity: 1;
        scale: 1
    }

    to {
        opacity: .95;
        scale: .85
    }
}

@keyframes smallToBigBackwardFrames {
    0% {
        opacity: 1;
        scale: 1
    }

    to {
        opacity: .95;
        scale: .85
    }
}

.loadable-image__container_loaded.loadable-image__container_backwardAnimationType_slide {
    -webkit-animation: slideBackwardFrames .2s ease-in forwards;
    animation: slideBackwardFrames .2s ease-in forwards
}

@-webkit-keyframes slideBackwardFrames {
    0% {
        left: 0;
        opacity: 1
    }

    to {
        left: 150px;
        opacity: .95
    }
}

@keyframes slideBackwardFrames {
    0% {
        left: 0;
        opacity: 1
    }

    to {
        left: 150px;
        opacity: .95
    }
}

.loadable-image__container_loaded.loadable-image__container_backwardAnimationType_appearance {
    -webkit-animation: appearanceForwardFrames .2s ease-in forwards;
    animation: appearanceForwardFrames .2s ease-in forwards
}

@keyframes appearanceForwardFrames {
    0% {
        opacity: .1
    }

    to {
        opacity: 1
    }
}

.loadable-image__container_loaded.loadable-image__container_backwardAnimationType_default {
    -webkit-animation: defaultForwardFrames .2s ease-in forwards;
    animation: defaultForwardFrames .2s ease-in forwards
}

@keyframes defaultForwardFrames {
    0% {
        opacity: 0;
        scale: 1
    }

    to {
        opacity: 1;
        scale: 1
    }
}

.loadable-image__container:not(.loadable-image__container_loaded) {
    align-items: center;
    -webkit-animation: background-loading 2s ease-in-out infinite;
    animation: background-loading 2s ease-in-out infinite;
    background-repeat: no-repeat;
    background-size: 200px 100%;
    border-radius: 4px;
    color: #746d6d;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    width: 100%
}

.loadable-image__image {
    color: #fff;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    width: 100%
}

.loadable-image__image_loaded {
    opacity: 1
}

.loadable-image__image_hidden {
    opacity: 0
}

.loadable-image__image_withAspectRatio {
    position: absolute
}

@media only screen and (min-width:768px) {
    .loadable-image__image {
        border-radius: 4px
    }
}

.loadable-image__loading-plug {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%
}

[dir=ltr] .loadable-image__loading-plug {
    left: 0
}

[dir=rtl] .loadable-image__loading-plug {
    right: 0
}

.loadable-image__loading-plug:after {
    -webkit-animation: loadable-placeholder-loading 1.3s infinite;
    animation: loadable-placeholder-loading 1.3s infinite;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

[dir=ltr] .loadable-image__loading-plug:after {
    background: linear-gradient(90deg, transparent, rgba(47, 47, 47, .3), transparent);
    -webkit-transform: translate(-100%);
    transform: translate(-100%)
}

[dir=rtl] .loadable-image__loading-plug:after {
    background: linear-gradient(-90deg, transparent, rgba(47, 47, 47, .3), transparent);
    -webkit-transform: translate(100%);
    transform: translate(100%)
}

@-webkit-keyframes loadable-placeholder-loading {
    0% {
        -webkit-transform: translate(-100%);
        transform: translate(-100%)
    }

    to {
        -webkit-transform: translate(100%);
        transform: translate(100%)
    }
}

@keyframes loadable-placeholder-loading {
    0% {
        -webkit-transform: translate(-100%);
        transform: translate(-100%)
    }

    to {
        -webkit-transform: translate(100%);
        transform: translate(100%)
    }
}

.slots-icon__prerelease {
    --bg-size: 400%;
    -webkit-animation: move-bg 3s linear infinite;
    animation: move-bg 3s linear infinite;
    color: transparent;
    font-weight: 700
}

[dir=ltr] .slots-icon__prerelease {
    background: linear-gradient(90deg, #e8b116, #000, #e8b116) 0 0/var(--bg-size) 100%
}

[dir=rtl] .slots-icon__prerelease {
    background: linear-gradient(-90deg, #e8b116, #000, #e8b116) 0 0/var(--bg-size) 100%
}

[dir] .slots-icon__prerelease {
    background-clip: text;
    -webkit-background-clip: text
}

@media(prefers-reduced-motion:no-preference) {
    .slots-icon__prerelease {
        -webkit-animation: move-bg 3s linear infinite;
        animation: move-bg 3s linear infinite
    }

    @-webkit-keyframes move-bg {
        to {
            background-position: var(--bg-size) 0
        }
    }

    @keyframes move-bg {
        to {
            background-position: var(--bg-size) 0
        }
    }
}

.slots-icon__prerelease-wrapper {
    align-items: center;
    background: #e8b116;
    border-radius: 3px;
    color: #000;
    display: flex;
    font-weight: 700;
    justify-content: center;
    padding: .3rem .6rem;
    position: absolute;
    text-transform: uppercase;
    top: 3px;
    z-index: 6
}

[dir=ltr] .slots-icon__prerelease-wrapper {
    right: 3px
}

[dir=rtl] .slots-icon__prerelease-wrapper {
    left: 3px
}

@media only screen and (max-width:767px) {
    .slots-icon__prerelease-wrapper {
        font-size: .8rem
    }
}

@media only screen and (min-width:768px) {
    .slots-icon__prerelease-wrapper {
        font-size: 1.2rem
    }
}

.slots-icon_isPrerelease .slots-icon__name {
    background: hsla(0, 0%, 7%, .4)
}

@media only screen and (max-width:767px) {
    .slots-icon_isPrerelease .slots-icon__name {
        background: #fcd301
    }
}

.slots-icon_isPrerelease .slots-icon__name h4 {
    height: auto;
    line-height: 100%;
    white-space: break-spaces
}

.slots-icon_isPrerelease .slots-icon__img {
    padding: 6px;
    position: relative
}

.slots-icon_isPrerelease .slots-icon__img:after,
.slots-icon_isPrerelease .slots-icon__img:before {
    -webkit-animation: prereleaseBgAnim 5s linear infinite;
    animation: prereleaseBgAnim 5s linear infinite;
    background-size: 50%;
    content: "";
    height: 350%;
    position: absolute;
    top: -80%;
    width: 300%;
    z-index: -1
}

[dir=ltr] .slots-icon_isPrerelease .slots-icon__img:after,
[dir=ltr] .slots-icon_isPrerelease .slots-icon__img:before {
    background: linear-gradient(45deg, #fb0094, #00f, #0f0, #ff0, red, #fb0094, #00f, #0f0, #ff0, red);
    left: -50%
}

[dir=rtl] .slots-icon_isPrerelease .slots-icon__img:after,
[dir=rtl] .slots-icon_isPrerelease .slots-icon__img:before {
    background: linear-gradient(-45deg, #fb0094, #00f, #0f0, #ff0, red, #fb0094, #00f, #0f0, #ff0, red);
    right: -50%
}

@-webkit-keyframes prereleaseBgAnim {
    0% {
        rotate: 0
    }

    50% {
        rotate: 180deg
    }

    to {
        rotate: 1turn
    }
}

@keyframes prereleaseBgAnim {
    0% {
        rotate: 0
    }

    50% {
        rotate: 180deg
    }

    to {
        rotate: 1turn
    }
}

.slots-icon_isPrerelease .slots-icon__img:after {
    -webkit-filter: blur(50px);
    filter: blur(50px)
}

.slots-icon__img {
    overflow: hidden
}

.slots-icon__new-label {
    background: #ffdf1b;
    border-radius: 2px;
    color: #000;
    font-size: .9rem;
    font-weight: 700;
    padding: .1rem .4rem;
    position: absolute;
    text-transform: uppercase;
    top: 3px;
    z-index: 2
}

[dir=ltr] .slots-icon__new-label {
    right: 3px
}

[dir=rtl] .slots-icon__new-label {
    left: 3px
}

@media only screen and (max-width:767px) {
    .slots-icon {
        flex-direction: column;
        min-height: 7rem;
        overflow: hidden;
        transition: all .3s ease;
        width: 100%
    }

    .slots-icon,
    .slots-icon__name {
        display: flex;
        position: relative
    }

    .slots-icon__name {
        align-items: center;
        background-color: #fcd301;
        color: #181818;
        font-size: .8rem;
        font-weight: 400;
        height: 1.6rem;
        justify-content: space-between;
        padding: 0 .3125rem
    }

    .slots-icon__name h4 {
        font: inherit;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .slots-icon__img {
        height: 100%;
        max-height: 39vw;
        position: relative
    }

    .slots-icon__img img {
        object-fit: fill
    }

    .slots-icon__img-plug {
        align-items: center;
        display: flex;
        height: 100%;
        justify-content: center;
        width: 100%
    }

    .slots-icon__dropWins-wrapper {
        border-top: 55px solid #111;
        position: absolute;
        top: 0
    }

    [dir=ltr] .slots-icon__dropWins-wrapper {
        border-right: 55px solid transparent;
        left: 0
    }

    [dir=rtl] .slots-icon__dropWins-wrapper {
        border-left: 55px solid transparent;
        right: 0
    }

    .slots-icon__dropWins-image {
        -webkit-animation: scaleDumping 2s infinite;
        animation: scaleDumping 2s infinite;
        position: absolute;
        top: -55px;
        width: 40px
    }

    [dir=ltr] .slots-icon__dropWins-image {
        left: 0
    }

    [dir=rtl] .slots-icon__dropWins-image {
        right: 0
    }

    .slots-icon__play-wrapper {
        display: none
    }

    .slots-icon__play-icon {
        width: 10px
    }

    .slots-icon__play-icon * {
        fill: #fff
    }

    .slots-icon__favorite {
        align-items: center;
        bottom: .4rem;
        display: flex;
        height: .875rem;
        justify-content: center;
        width: .875rem;
        z-index: 3
    }

    [dir=ltr] .slots-icon__favorite {
        right: .4375rem
    }

    [dir=rtl] .slots-icon__favorite {
        left: .4375rem
    }

    .slots-icon__favorite * {
        fill: #8d0400
    }
}

@media only screen and (min-width:768px) {
    .slots-icon {
        border: .1875rem solid transparent;
        border-bottom: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        min-height: 12rem !important;
        overflow: hidden;
        position: relative;
        transition: all .3s linear;
        width: 100%
    }

    .slots-icon__img {
        height: calc(100% - 2.9375rem);
        width: 100%
    }

    .slots-icon__img img {
        object-fit: fill
    }

    .slots-icon__img-plug {
        background: #4f4f4f;
        height: 100%;
        padding-bottom: 31.57%;
        padding-top: 31.57%
    }

    .slots-icon__img-plug,
    .slots-icon__play-wrapper {
        align-items: center;
        display: flex;
        justify-content: center;
        width: 100%
    }

    .slots-icon__play-wrapper {
        height: calc(100% - 2.9375rem);
        position: absolute;
        top: 0
    }

    [dir=ltr] .slots-icon__play-wrapper {
        left: 0
    }

    [dir=rtl] .slots-icon__play-wrapper {
        right: 0
    }

    .slots-icon__play-icon {
        height: 0;
        overflow: hidden;
        width: 0
    }

    .slots-icon__play-icon * {
        fill: #fcd301
    }

    .slots-icon__play-icon-wrapper {
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 10px;
        transition: all .1s linear
    }

    .slots-icon__play-icon-wrapper:hover {
        box-shadow: 0 0 1.25rem #000
    }

    .slots-icon:hover {
        background: #fcd301;
        color: #000
    }

    .slots-icon:hover .slots-icon__play-icon-wrapper {
        background: #fff;
        border-radius: 100%;
        color: #fff;
        height: 3.975rem;
        width: 3.975rem
    }

    .slots-icon:hover .slots-icon__play-icon-wrapper svg {
        height: 40%;
        width: 40%
    }

    .slots-icon:hover .slots-icon__img {
        opacity: .8
    }

    .slots-icon__dropWins-wrapper {
        border-top: 55px solid #111;
        position: absolute;
        top: 0
    }

    [dir=ltr] .slots-icon__dropWins-wrapper {
        border-right: 55px solid transparent
    }

    [dir=rtl] .slots-icon__dropWins-wrapper {
        border-left: 55px solid transparent
    }

    .slots-icon__dropWins-image {
        -webkit-animation: scaleDumping 2s infinite;
        animation: scaleDumping 2s infinite;
        position: absolute;
        top: -55px;
        width: 40px
    }

    .slots-icon__name {
        align-items: center;
        border-bottom: .125rem solid hsla(0, 0%, 84%, .075);
        display: flex;
        height: 2.9375rem;
        justify-content: space-between;
        padding: 0 .9375rem;
        position: relative;
        transition: all .3s linear
    }

    .slots-icon__name h4 {
        color: #d5d5d5;
        display: inline-block;
        font-size: .85rem;
        height: 2.9375rem;
        line-height: 2.9375rem;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: calc(100% - 4.375rem)
    }

    .slots-icon__name svg {
        color: #fcd301
    }

    .slots-icon:hover .slots-icon__name h4,
    .slots-icon:hover .slots-icon__name svg {
        color: #000 !important
    }

    .slots-icon__favorite {
        height: 15px;
        width: 15px
    }
}

@-webkit-keyframes scaleDumping {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }
}

@keyframes scaleDumping {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }
}

.pragmatic-dga-black-jack {
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    flex-direction: column;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-black-jack {
        background-color: rgba(0, 0, 0, .2);
        padding: .1875rem
    }
}

.pragmatic-dga-black-jack__users {
    align-self: center;
    display: flex
}

.pragmatic-dga-black-jack__user-icon {
    border: 2px solid #f9d601;
    border-radius: 100%;
    color: #f9d601;
    height: 1.375rem;
    width: 1.375rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-black-jack__user-icon {
        border-width: 1px;
        height: 1rem;
        width: 1rem
    }
}

[dir=ltr] .pragmatic-dga-black-jack__user-icon:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-black-jack__user-icon:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-black-jack__user-icon:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-black-jack__user-icon:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-black-jack__user-icon_occupied {
    background-color: #f9d601;
    color: #000
}

.pragmatic-dga-roulette {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    overflow: hidden;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-roulette {
        background-color: rgba(0, 0, 0, .2);
        padding: .1875rem
    }
}

.pragmatic-dga-roulette__bet {
    align-items: center;
    border-radius: 3px;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 1rem;
    height: 1.625rem;
    justify-content: center;
    width: 1.875rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-roulette__bet {
        font-size: .8125rem;
        height: 1.125rem;
        width: 1.375rem
    }
}

[dir=ltr] .pragmatic-dga-roulette__bet:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-roulette__bet:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-roulette__bet:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-roulette__bet:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-roulette__bet_color_red {
    background-color: #b42740
}

.pragmatic-dga-roulette__bet_color_black {
    background-color: #363144
}

.pragmatic-dga-roulette__bet_color_green {
    background-color: #118d4f
}

.pragmatic-dga-mega-roulette {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    overflow: hidden;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-roulette {
        background-color: rgba(0, 0, 0, .2);
        padding: .1875rem
    }
}

.pragmatic-dga-mega-roulette__bet {
    align-items: center;
    border-radius: 3px;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 1.625rem;
    justify-content: center;
    position: relative;
    width: 1.875rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-roulette__bet {
        height: 1.125rem;
        width: 1.375rem
    }
}

[dir=ltr] .pragmatic-dga-mega-roulette__bet:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-mega-roulette__bet:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-mega-roulette__bet:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-mega-roulette__bet:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-mega-roulette__bet_color_red {
    background-color: #b42740
}

.pragmatic-dga-mega-roulette__bet_color_black {
    background-color: #363144
}

.pragmatic-dga-mega-roulette__bet_color_green {
    background-color: #118d4f
}

.pragmatic-dga-mega-roulette__bet_multiplier {
    border: 1px solid #b5976c
}

.pragmatic-dga-mega-roulette__multiplier {
    background-color: #e0d39d;
    border-radius: 2px;
    color: #4d3a11;
    font-size: .5rem;
    padding: 0 2px;
    position: absolute;
    top: 0
}

[dir=ltr] .pragmatic-dga-mega-roulette__multiplier {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-.3125rem);
    transform: translateX(-50%) translateY(-.3125rem)
}

[dir=rtl] .pragmatic-dga-mega-roulette__multiplier {
    right: 50%;
    -webkit-transform: translateX(50%) translateY(-.3125rem);
    transform: translateX(50%) translateY(-.3125rem)
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-roulette__multiplier {
        font-size: .375rem
    }

    [dir=ltr] .pragmatic-dga-mega-roulette__multiplier {
        -webkit-transform: translateX(-50%) translateY(-.1875rem);
        transform: translateX(-50%) translateY(-.1875rem)
    }

    [dir=rtl] .pragmatic-dga-mega-roulette__multiplier {
        -webkit-transform: translateX(50%) translateY(-.1875rem);
        transform: translateX(50%) translateY(-.1875rem)
    }
}

.pragmatic-dga-mega-roulette__result {
    font-size: 1rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-roulette__result {
        font-size: .8125rem
    }
}

.pragmatic-dga-sic-bo {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    overflow: hidden;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-sic-bo {
        background-color: rgba(0, 0, 0, .2);
        padding: .1875rem
    }
}

.pragmatic-dga-sic-bo__result {
    align-items: center;
    background-color: #e3ddd4;
    border-radius: 3px;
    color: #181f2d;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 700;
    height: 1.625rem;
    justify-content: center;
    position: relative;
    width: 1.875rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-sic-bo__result {
        font-size: .8125rem;
        height: 1.125rem;
        width: 1.375rem
    }
}

[dir=ltr] .pragmatic-dga-sic-bo__result:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-sic-bo__result:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-sic-bo__result:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-sic-bo__result:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-sic-bo__result_type_small {
    background-color: #e3ddd4
}

.pragmatic-dga-sic-bo__result_type_big {
    background-color: #cab789
}

.pragmatic-dga-sic-bo__result_type_triple {
    background-color: #f46c6f
}

.pragmatic-dga-mega-wheel {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    overflow: hidden;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-wheel {
        background-color: rgba(0, 0, 0, .2);
        padding: .1875rem
    }
}

.pragmatic-dga-mega-wheel__result {
    align-items: center;
    background-color: #fdeaaf;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 1.625rem;
    justify-content: center;
    position: relative;
    width: 1.625rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-wheel__result {
        font-size: .8125rem;
        height: 1.125rem;
        width: 1.125rem
    }
}

[dir=ltr] .pragmatic-dga-mega-wheel__result:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-mega-wheel__result:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-mega-wheel__result:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-mega-wheel__result:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-mega-wheel__result_type_1 {
    background-color: #fdeaaf
}

.pragmatic-dga-mega-wheel__result_type_2 {
    background-color: #fdad19
}

.pragmatic-dga-mega-wheel__result_type_5 {
    background-color: #4285dd
}

.pragmatic-dga-mega-wheel__result_type_8 {
    background-color: #9f30ac
}

.pragmatic-dga-mega-wheel__result_type_10 {
    background-color: #f8503b
}

.pragmatic-dga-mega-wheel__result_type_15 {
    background-color: #fd6d14
}

.pragmatic-dga-mega-wheel__result_type_20 {
    background-color: #29d89a
}

.pragmatic-dga-mega-wheel__result_type_30 {
    background-color: #6949ee
}

.pragmatic-dga-mega-wheel__result_type_40 {
    background-color: #f7bcfc
}

.pragmatic-dga-mega-wheel__multiplier {
    background-color: #f1c41e;
    border-radius: 2px;
    color: #000;
    font-size: .5rem;
    padding: 0 3px;
    position: absolute;
    top: 0
}

[dir=ltr] .pragmatic-dga-mega-wheel__multiplier {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-.3125rem);
    transform: translateX(-50%) translateY(-.3125rem)
}

[dir=rtl] .pragmatic-dga-mega-wheel__multiplier {
    right: 50%;
    -webkit-transform: translateX(50%) translateY(-.3125rem);
    transform: translateX(50%) translateY(-.3125rem)
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-wheel__multiplier {
        font-size: .375rem
    }

    [dir=ltr] .pragmatic-dga-mega-wheel__multiplier {
        -webkit-transform: translateX(-50%) translateY(-.1875rem);
        transform: translateX(-50%) translateY(-.1875rem)
    }

    [dir=rtl] .pragmatic-dga-mega-wheel__multiplier {
        -webkit-transform: translateX(50%) translateY(-.1875rem);
        transform: translateX(50%) translateY(-.1875rem)
    }
}

.pragmatic-dga-mega-wheel__result-value {
    color: #27213e;
    display: block;
    font-size: 1rem;
    font-weight: 700
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-mega-wheel__result-value {
        font-size: .8125rem
    }
}

.pragmatic-dga-andar-bahar {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    overflow: hidden;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-andar-bahar {
        background-color: rgba(0, 0, 0, .2);
        padding: .1875rem
    }
}

.pragmatic-dga-andar-bahar__result {
    align-items: center;
    background-color: #367fea;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 1rem;
    height: 1.625rem;
    justify-content: center;
    text-transform: uppercase;
    width: 1.625rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-andar-bahar__result {
        font-size: .8125rem;
        height: 1.125rem;
        width: 1.125rem
    }
}

[dir=ltr] .pragmatic-dga-andar-bahar__result:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-andar-bahar__result:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-andar-bahar__result:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-andar-bahar__result:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-andar-bahar__result_type_BAHAR {
    background-color: #f23237
}

.pragmatic-dga-andar-bahar__result_type_ANDAR {
    background-color: #367fea
}

.pragmatic-dga-sweet-bonanza {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    overflow: hidden;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-sweet-bonanza {
        background-color: rgba(0, 0, 0, .4);
        padding: .1875rem
    }
}

.pragmatic-dga-sweet-bonanza__result-container {
    align-items: center;
    display: flex
}

[dir=ltr] .pragmatic-dga-sweet-bonanza__result-container:not(:last-of-type) {
    margin-right: .375rem
}

[dir=rtl] .pragmatic-dga-sweet-bonanza__result-container:not(:last-of-type) {
    margin-left: .375rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-sweet-bonanza__result-container:not(:last-of-type) {
        margin-right: .25rem
    }

    [dir=rtl] .pragmatic-dga-sweet-bonanza__result-container:not(:last-of-type) {
        margin-left: .25rem
    }
}

.pragmatic-dga-sweet-bonanza__result {
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 1.625rem;
    justify-content: center;
    position: relative;
    width: 2.25rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-sweet-bonanza__result {
        height: 1.125rem;
        width: 1.5625rem
    }
}

[dir=ltr] .pragmatic-dga-sweet-bonanza__result:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-sweet-bonanza__result:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-sweet-bonanza__result:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-sweet-bonanza__result:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-sweet-bonanza__result-value {
    color: #dddce2;
    display: block;
    font-size: 1rem;
    font-weight: 700
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-sweet-bonanza__result-value {
        font-size: .8125rem
    }
}

.pragmatic-dga-boom-or-bust {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    overflow: hidden;
    padding: .3125rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-boom-or-bust {
        background-color: rgba(0, 0, 0, .4);
        padding: .1875rem
    }
}

.pragmatic-dga-boom-or-bust__result-container {
    align-items: center;
    display: flex
}

[dir=ltr] .pragmatic-dga-boom-or-bust__result-container:not(:last-of-type) {
    margin-right: .375rem
}

[dir=rtl] .pragmatic-dga-boom-or-bust__result-container:not(:last-of-type) {
    margin-left: .375rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-boom-or-bust__result-container:not(:last-of-type) {
        margin-right: .25rem
    }

    [dir=rtl] .pragmatic-dga-boom-or-bust__result-container:not(:last-of-type) {
        margin-left: .25rem
    }
}

.pragmatic-dga-boom-or-bust__result {
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 1.625rem;
    justify-content: center;
    position: relative;
    width: 4.0625rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-boom-or-bust__result {
        height: 1.125rem;
        width: 2.8125rem
    }
}

[dir=ltr] .pragmatic-dga-boom-or-bust__result:not(:last-of-type) {
    margin-right: .3125rem
}

[dir=rtl] .pragmatic-dga-boom-or-bust__result:not(:last-of-type) {
    margin-left: .3125rem
}

@media only screen and (max-width:767px) {
    [dir=ltr] .pragmatic-dga-boom-or-bust__result:not(:last-of-type) {
        margin-right: .1875rem
    }

    [dir=rtl] .pragmatic-dga-boom-or-bust__result:not(:last-of-type) {
        margin-left: .1875rem
    }
}

.pragmatic-dga-boom-or-bust__result-value {
    color: #fff;
    display: block;
    font-size: .875rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-boom-or-bust__result-value {
        font-size: .6875rem
    }
}

.pragmatic-dga-boom-or-bust__result-value_powerUp {
    color: #fbc951
}

.pragmatic-dga-main-info {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    padding: .5rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-main-info {
        padding: .3rem
    }
}

.pragmatic-dga-main-info__limits {
    background-color: #f9d601;
    border-radius: .625rem;
    margin-bottom: .375rem;
    padding: .1875rem .375rem
}

.pragmatic-dga-main-info__text {
    display: block;
    font-size: 1rem;
    line-height: 1rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-main-info__text {
        font-size: .7rem;
        line-height: .7rem
    }
}

.pragmatic-dga-main-info__users-count {
    align-items: center;
    background-color: #f9d601;
    border-radius: .625rem;
    display: flex;
    padding: .1875rem .375rem
}

.pragmatic-dga-main-info__user-icon {
    height: 1rem;
    width: 1rem
}

@media only screen and (max-width:767px) {
    .pragmatic-dga-main-info__user-icon {
        height: .7rem;
        width: .7rem
    }
}

.pragmatic-dga {
    background-color: #4f4f4f;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%
}

.pragmatic-dga__main-info {
    margin-bottom: auto
}

.slots-layout-content {
    min-height: 100%;
    position: relative
}

@media only screen and (max-width:767px) {
    .slots-layout-content__slots {
        grid-gap: .325rem;
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 .6rem .5rem
    }
}

@media(min-width:500px) {
    .slots-layout-content__slots {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media only screen and (min-width:768px) {
    .slots-layout-content__slots {
        grid-gap: 0 .9375rem;
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(4, 2fr);
        margin-top: .3125rem;
        padding: .625rem
    }
}

@media only screen and (min-width:1450px) {
    .slots-layout-content__slots {
        grid-template-columns: repeat(5, 2fr)
    }
}

.slots-layout-content__loading {
    align-items: center;
    color: #fff;
    display: flex;
    height: 2rem;
    justify-content: center
}

.slots-layout-content__header {
    align-items: center;
    background: #1f1f1f;
    color: #fff;
    display: flex;
    height: 2.8125rem;
    justify-content: space-between;
    padding: 0 .9375rem;
    width: 100%
}

.slots-layout-content__header-title {
    text-transform: uppercase
}

.slots-layout-content__header-back {
    width: 11px
}

.slots-layout-content__header-back * {
    fill: #fff
}

@media only screen and (min-width:768px) {
    .slots-layout-content__header {
        display: none
    }
}

.slots-layout__wrapper {
    flex-grow: 1
}

@-webkit-keyframes open-modal {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.wheel-style-variables {
    --wheel-page-container-width: 1200px;
    --wheel-size: 90vw;
    --wheel-border-radius: 15px;
    --wheel-data-value-fz: 15.4px;
    --wheel-data-currency-fz: 12.4px;
    --wheel-data-value-stroke: 1.04px;
    --wheel-data-currency-stroke: 0.72px;
    --wheel-data-additional-width: 4.8px;
    --wheel-button-height: 60.8px;
    --wheel-button-width: 78%;
    --wheel-button-fz: 16px;
    --wheel-timer-height: 54.4px;
    --wheel-timer-label-fz: 14.4px;
    --wheel-timer-time-fz: 14.4px;
    --wheel-history-header-height: 64px;
    --wheel-history-header-fz: 22px;
    --wheel-history-item-name-fz: 12.8px;
    --wheel-history-item-v-top-fz: 22px;
    --wheel-history-item-v-bottom-fz: 20px;
    --wheel-history-item-present-fz: 24px;
    --wheel-history-item-v-top-stroke: 0;
    --wheel-history-item-v-bottom-stroke: 0;
    --wheel-history-nobonuses-fz: 24px;
    --spin-history-title-icon-size: 25px;
    --mega-win-height: 80px;
    --win-modal-amount-border-width: 10px;
    --wheel-center-text-ff: "Kanit", sans-serif;
    --wheel-center-text-fz: 44px;
    --wheel-center-text-fw: 900;
    --wheel-center-text-lh: 36px;
    --wheel-center-text-stroke-width: 2px;
    --wheel-main-color: #fff;
    --wheel-text-stroke-color: #401802cc;
    --wheel-box-shadow-color: #ffa800cc;
    --wheel-history-border-color: #fff0c980;
    --sector-even-bg: #111;
    --sector-odd-bg: #ffe600;
    --sector-border-color: #fff0c9;
    --sector-border-opacity: 0.5;
    --wheel-data-value-color: #fff;
    --wheel-data-value-stroke-color: #401802cc;
    --wheel-data-currency-color: var(--wheel-data-value-color);
    --wheel-data-currency-stroke-color: var(--wheel-data-value-stroke-color);
    --outer-ring-bg: #ffe600;
    --inner-ring-bg: #ffb800;
    --wheel-tip-bg: #ffb800;
    --wheel-tip-border-color: #fff0c9;
    --wheel-tip-border-opacity: 0.5;
    --wheel-center-bg: #ffb800;
    --wheel-center-border-color: #fff0c9;
    --wheel-center-border-opacity: 0.5;
    --wheel-center-text-stroke-color: #f3b002;
    --wheel-center-text-color: #fff;
    --wheel-center-text-opacity: 0.85;
    --prize-with-icon-circle-bg: #ffe600;
    --light-ball-active-bg-from: #fff;
    --light-ball-active-bg-to: #feffb8;
    --light-ball-disabled-bg-from: #acacac;
    --light-ball-disabled-bg-to: #d2d3a3;
    --mega-win-border-color: #f3b002;
    --mega-win-title-stroke-color: #f3b002;
    --mega-win-title-color: #fff;
    --mega-win-text-opacity: 0.85;
    --mega-win-description-color: #fff;
    --spin-button-left-bg: #87ef04;
    --spin-button-right-bg: #67eb00;
    --spin-button-border-bottom-color: #4ec306;
    --spin-button-text-color: #fff;
    --wheel-timer-left-bg: #71b609;
    --wheel-timer-right-bg: #3b7a09;
    --wheel-timer-border-bottom-color: #3b7a09;
    --wheel-timer-text-color: #fff;
    --wheel-leg-border-color: #ffb800;
    --wheel-leg-bg-from: #ffe600;
    --wheel-leg-bg-to: #ff8c00;
    --spin-history-title-bg: linear-gradient(180deg, #ffb800, #ffcb00);
    --spin-history-title-text-color: #fff;
    --spin-history-title-icon-color: #fff;
    --spin-history-content-bg: linear-gradient(180deg, #ffb800, #ffcb00);
    --spin-history-item-border-color: rgba(255, 240, 201, .5);
    --spin-history-item-text-color: #fff;
    --spin-history-content-scrollbar-thumb-color: hsla(0, 0%, 100%, .5);
    --spin-history-content-scrollbar-track-color: transparent
}

@media only screen and (min-width:475px) {
    .wheel-style-variables {
        --spin-history-title-icon-size: 40px;
        --wheel-history-header-fz: 32px;
        --wheel-history-item-v-top-fz: 33.6px;
        --wheel-history-item-v-bottom-fz: 25.5px
    }
}

@media only screen and (min-width:768px) {
    .wheel-style-variables {
        --wheel-size: 480px;
        --wheel-button-height: 83.2px;
        --wheel-button-width: calc(var(--wheel-size)/3*2);
        --wheel-history-item-name-fz: 16px;
        --wheel-history-item-v-top-fz: 38.4px;
        --wheel-history-item-v-bottom-fz: 27.2px
    }
}

@media only screen and (min-width:1024px) {
    .wheel-style-variables {
        --wheel-size: 560px;
        --wheel-data-value-fz: 24.8px;
        --wheel-data-currency-fz: 16px;
        --wheel-data-value-stroke: 1.6px;
        --wheel-data-currency-stroke: 1.04px;
        --wheel-button-fz: 20.8px;
        --wheel-timer-height: 57.6px;
        --wheel-timer-label-fz: 16px;
        --wheel-timer-time-fz: 16px;
        --wheel-history-nobonuses-fz: 48px;
        --mega-win-height: 112px
    }
}

.wheel-game-page {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--wheel-main-color);
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    padding: 8px;
    width: 100%
}

.wheel-game-page__container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    width: 100%
}

@media only screen and (min-width:768px) {
    .wheel-game-page__container {
        flex-direction: row;
        gap: 80px;
        max-width: var(--wheel-page-container-width)
    }
}

.wheel-game-page__game,
.wheel-game-page__history {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
    width: 100%
}

.bc-modal {
    -webkit-animation: animateOpenCloseFrames .25s linear forwards;
    animation: animateOpenCloseFrames .25s linear forwards;
    background-color: rgba(0, 0, 0, .5);
    height: 100%;
    inset: 0;
    position: fixed;
    width: 100%;
    z-index: 999
}

@-webkit-keyframes animateOpenCloseFrames {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.bc-modal_closed {
    -webkit-animation: animateOpenCloseBackwardsFrames .25s linear forwards;
    animation: animateOpenCloseBackwardsFrames .25s linear forwards
}

@-webkit-keyframes animateOpenCloseBackwardsFrames {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.bc-modal_type_fixed {
    position: fixed
}

.bc-modal__inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%
}

.bc-modal__inner_position_top {
    justify-content: flex-start
}

.bc-modal__inner_position_center {
    justify-content: center
}

.bc-modal__inner_position_bottom {
    justify-content: flex-end
}

.bc-modal__content {
    height: 100%;
    width: 100%
}

@-webkit-keyframes appear {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes appear {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes disappear {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes disappear {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.wheel-page-game {
    position: relative
}

.wheel-page-game__mega-win {
    --mega-win-bottom: -8px;
    display: flex;
    height: var(--mega-win-height);
    justify-content: center;
    opacity: 1;
    position: relative;
    transition: opacity .6s ease
}

@media only screen and (min-width:768px) {
    .wheel-page-game__mega-win {
        --mega-win-bottom: -16px
    }
}

.wheel-page-game__mega-win_isHidden {
    opacity: 0
}

.wheel-page-game__mega-win-bg {
    bottom: 0;
    height: auto;
    margin: auto;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    user-select: none;
    width: 100%
}

.wheel-page-game__mega-win-icon {
    bottom: var(--mega-win-bottom);
    height: 100%;
    position: absolute;
    width: auto;
    z-index: 3
}

.wheel-page-game__mega-win-dropshadow {
    animation: shadow-pulse 2s linear infinite reverse;
    aspect-ratio: 1;
    background: hsla(0, 0%, 100%, .5);
    border-radius: 50%;
    height: 65%;
    inset: 0;
    bottom: var(--mega-win-bottom);
    box-shadow: 0 0 60px 9px #fff;
    margin: auto;
    position: absolute;
    width: auto;
    z-index: 2
}

.wheel-page-game__coins-stuck {
    bottom: -15%;
    height: auto;
    opacity: 1;
    position: absolute;
    transition: opacity .6s ease;
    width: 134%
}

[dir=ltr] .wheel-page-game__coins-stuck {
    left: -17%
}

[dir=rtl] .wheel-page-game__coins-stuck {
    right: -17%
}

.wheel-page-game__coins-stuck_isHidden {
    opacity: 0
}

@-webkit-keyframes shadow-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes shadow-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.wheel-game-page-history {
    display: flex;
    flex-direction: column-reverse;
    flex-grow: 1;
    gap: 16px;
    position: relative;
    width: 100%
}

@media only screen and (min-width:768px) {
    .wheel-game-page-history {
        flex-direction: column
    }
}

.wheel-game-page-history__header {
    align-items: center;
    background: var(--spin-history-title-bg);
    border-radius: var(--wheel-border-radius);
    color: var(--spin-history-title-text-color);
    display: flex;
    font-size: var(--wheel-history-header-fz);
    font-weight: 700;
    height: var(--wheel-history-header-height);
    justify-content: center;
    padding: 10px;
    text-align: center;
    text-shadow: 0 3px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    width: 100%
}

.wheel-game-page-history__header-refresh-icon {
    color: var(--spin-history-title-icon-color);
    cursor: pointer;
    flex-shrink: 0;
    height: var(--spin-history-title-icon-size);
    width: var(--spin-history-title-icon-size)
}

[dir=ltr] .wheel-game-page-history__header-refresh-icon {
    margin-left: 15px
}

[dir=rtl] .wheel-game-page-history__header-refresh-icon {
    margin-right: 15px
}

.wheel-game-page-history__header-refresh-icon_loading {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    -webkit-filter: brightness(.8);
    filter: brightness(.8)
}

.wheel-game-page-history__background {
    height: auto;
    inset: 0;
    margin: auto;
    position: absolute;
    width: 80%
}

.wheel-game-page-history__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    max-height: calc(var(--wheel-size) - var(--wheel-history-header-height));
    overflow-y: scroll;
    padding: 0 16px;
    position: relative;
    width: 100%;
    z-index: 10
}

.wheel-game-page-history__list::-webkit-scrollbar {
    display: block;
    width: 3px
}

.wheel-game-page-history__list::-webkit-scrollbar-thumb {
    background: var(--spin-history-content-scrollbar-thumb-color);
    border-radius: 5px
}

.wheel-game-page-history__list::-webkit-scrollbar-track {
    background: var(--spin-history-content-scrollbar-track-color);
    border-radius: 5px
}

.wheel-game-page-history__list-wrapper {
    background: var(--spin-history-content-bg);
    border-radius: var(--wheel-border-radius);
    flex-grow: 1;
    height: 100%;
    min-height: calc(var(--wheel-size) - var(--wheel-history-header-height));
    overflow: hidden;
    padding: 22.4px 8px;
    position: relative;
    width: 100%;
    z-index: 3
}

.wheel-game-page-history__row {
    border: 2px solid var(--spin-history-item-border-color);
    border-radius: var(--wheel-border-radius);
    display: grid;
    grid-template-columns: 1fr 1fr
}

.wheel-game-page-history__col {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    padding: 11.2px 16px;
    width: 100%
}

[dir=ltr] .wheel-game-page-history__col:first-child {
    border-right: 2px solid var(--spin-history-item-border-color)
}

[dir=rtl] .wheel-game-page-history__col:first-child {
    border-left: 2px solid var(--spin-history-item-border-color)
}

.wheel-game-page-history__col-name,
.wheel-game-page-history__col-value {
    color: var(--spin-history-item-text-color);
    font-weight: 700;
    line-height: 1;
    max-width: 100%;
    position: relative;
    text-align: center;
    text-shadow: 0 3px rgba(0, 0, 0, .2)
}

.wheel-game-page-history__col-name {
    font-size: var(--wheel-history-item-name-fz);
    text-transform: uppercase
}

.wheel-game-page-history__value {
    display: block;
    letter-spacing: -.8px;
    margin-top: 4.8px;
    width: 100%
}

.wheel-game-page-history__value_top {
    -webkit-text-stroke: var(--wheel-history-item-v-top-stroke) var(--wheel-text-stroke-color);
    font-size: var(--wheel-history-item-v-top-fz)
}

.wheel-game-page-history__value_bottom {
    -webkit-text-stroke: var(--wheel-history-item-v-bottom-stroke) var(--wheel-text-stroke-color);
    font-size: var(--wheel-history-item-v-bottom-fz);
    margin-top: 3.2px
}

.wheel-game-page-history__present {
    font-size: var(--wheel-history-item-present-fz)
}

.wheel-game-page-history__noBonuses {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    width: 100%
}

.wheel-game-page-history__noBonuses-bg {
    bottom: 0;
    height: auto;
    position: absolute;
    width: 70%
}

[dir=ltr] .wheel-game-page-history__noBonuses-bg {
    left: 0
}

[dir=rtl] .wheel-game-page-history__noBonuses-bg {
    right: 0
}

@media only screen and (min-width:1024px) {
    .wheel-game-page-history__noBonuses-bg {
        width: 80%
    }
}

.wheel-game-page-history__noBonuses-text {
    font-size: var(--wheel-history-nobonuses-fz);
    font-weight: 700;
    letter-spacing: -.48px;
    line-height: 1.02;
    position: relative;
    text-align: center;
    text-shadow: 0 3px rgba(0, 0, 0, .2);
    text-transform: uppercase
}

.wheel-game-page-history__loader {
    margin-top: 10px;
    position: relative
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.wheel-win {
    -webkit-animation: show-backdrop .5s forwards;
    animation: show-backdrop .5s forwards;
    font-family: Paytone One;
    height: 100%;
    overflow: hidden;
    width: 100%
}

.wheel-win__coins {
    -webkit-animation: show-coins .5s forwards;
    animation: show-coins .5s forwards;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 1
}

.wheel-win__coins_lost {
    display: none
}

.wheel-win__wrapper {
    align-items: center;
    -webkit-animation: open-modal .5s forwards;
    animation: open-modal .5s forwards;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%
}

.wheel-win__lines {
    -webkit-animation: infitieRotate 5s linear infinite;
    animation: infitieRotate 5s linear infinite;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2
}

@-webkit-keyframes infitieRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        -webkit-transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(1turn);
        -webkit-transform: translate(-50%, -50%) rotate(1turn)
    }
}

@keyframes infitieRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        -webkit-transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(1turn);
        -webkit-transform: translate(-50%, -50%) rotate(1turn)
    }
}

.wheel-win__state-wrapper-win {
    height: auto;
    left: 50%;
    position: absolute;
    top: 25%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transform: translateX(-52%);
    transform: translateX(-52%);
    width: 250px;
    width: 305px;
    z-index: 2
}

@media only screen and (min-width:475px) {
    .wheel-win__state-wrapper-win {
        width: 340px
    }
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-win {
        width: 340px
    }
}

.wheel-win__state-wrapper-win_lang_fr-fr {
    width: 300px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-win_lang_fr-fr {
        width: 340px
    }
}

.wheel-win__state-wrapper-win_lang_he-HE {
    top: 20%;
    width: 273px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-win_lang_he-HE {
        width: 341px
    }
}

.wheel-win__state-wrapper-win_lang_tr-tr {
    width: 293px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-win_lang_tr-tr {
        width: 363px
    }
}

.wheel-win__state-wrapper-win_lang_es-ES {
    width: 300px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-win_lang_es-ES {
        width: 346px
    }
}

.wheel-win__state-wrapper-win_lang_pt-BR {
    top: 22%;
    -webkit-transform: translateX(-54%);
    transform: translateX(-54%);
    width: 295px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-win_lang_pt-BR {
        top: 25%;
        width: 351px
    }
}

.wheel-win__state-wrapper-lost {
    height: auto;
    left: 50%;
    position: absolute;
    top: 25%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transform: translateX(-52%);
    transform: translateX(-52%);
    width: 250px;
    width: 300px;
    z-index: 2
}

@media only screen and (min-width:475px) {
    .wheel-win__state-wrapper-lost {
        width: 340px
    }
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-lost {
        width: 354px
    }
}

.wheel-win__state-wrapper-lost_lang_fr-fr {
    width: 300px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-lost_lang_fr-fr {
        width: 399px
    }
}

.wheel-win__state-wrapper-lost_lang_he-HE {
    top: 20%;
    width: 246px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-lost_lang_he-HE {
        width: 338px
    }
}

.wheel-win__state-wrapper-lost_lang_tr-tr {
    width: 300px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-lost_lang_tr-tr {
        width: 405px
    }
}

.wheel-win__state-wrapper-lost_lang_es-ES {
    width: 300px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-lost_lang_es-ES {
        width: 403px
    }
}

.wheel-win__state-wrapper-lost_lang_pt-BR {
    -webkit-transform: translateX(-54%);
    transform: translateX(-54%);
    width: 300px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-wrapper-lost_lang_pt-BR {
        width: 351px
    }
}

.wheel-win__state-text {
    height: auto;
    width: 100%
}

.wheel-win__state-text-additional {
    bottom: 0;
    color: #fff;
    font-size: 16px;
    left: 50%;
    line-height: 100%;
    position: absolute;
    text-align: center;
    text-shadow: 1px 2px #cd6de5;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.wheel-win__state-text-additional_lang_fr-fr {
    -webkit-transform: translate(-50%, 30%);
    transform: translate(-50%, 30%);
    width: 216px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-text-additional_lang_fr-fr {
        -webkit-transform: translate(-50%, 15%);
        transform: translate(-50%, 15%);
        width: 202px
    }
}

.wheel-win__state-text-additional_lang_he-HE {
    -webkit-transform: translate(-50%, 15%);
    transform: translate(-50%, 15%);
    width: 216px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-text-additional_lang_he-HE {
        width: 210px
    }
}

.wheel-win__state-text-additional_lang_tr-tr {
    -webkit-transform: translate(-50%, 30%);
    transform: translate(-50%, 30%);
    width: 189px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-text-additional_lang_tr-tr {
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        width: 182px
    }
}

.wheel-win__state-text-additional_lang_es-ES {
    width: 147px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-text-additional_lang_es-ES {
        width: 198px
    }
}

.wheel-win__state-text-additional_lang_pt-BR {
    -webkit-transform: translate(-50%, 45%);
    transform: translate(-50%, 45%);
    width: 211px
}

@media only screen and (min-width:768px) {
    .wheel-win__state-text-additional_lang_pt-BR {
        width: 185px
    }
}

.wheel-win__content-wrapper {
    align-items: center;
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
    display: flex;
    height: 410px;
    justify-content: center;
    position: relative;
    width: auto;
    z-index: 3
}

@media only screen and (min-width:475px) {
    .wheel-win__content-wrapper {
        height: 554px
    }
}

.wheel-win__content {
    align-items: center;
    bottom: 13%;
    display: flex;
    flex-direction: column;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-54%);
    transform: translateX(-54%);
    z-index: 2
}

.wheel-win__flag {
    height: 100%;
    width: auto;
    z-index: 1
}

.wheel-win__win-amount {
    -webkit-text-stroke: 3px #bf7ab5;
    align-items: center;
    color: #eedaf3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px
}

@media only screen and (min-width:475px) {
    .wheel-win__win-amount {
        -webkit-text-stroke: 4px #bf7ab5
    }
}

.wheel-win__present {
    max-height: 95px
}

@media only screen and (min-width:475px) {
    .wheel-win__present {
        max-height: 150px
    }
}

.wheel-win__amount {
    font-size: 64px;
    line-height: 100%
}

@media only screen and (min-width:475px) {
    .wheel-win__amount {
        font-size: 88px
    }
}

.wheel-win__currency {
    font-size: 28px;
    line-height: 100%
}

@media only screen and (min-width:475px) {
    .wheel-win__currency {
        font-size: 40px
    }
}

.wheel-win__button {
    align-items: center;
    background: #87ef04;
    border: none;
    border-bottom: 10px solid #4ec306;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    margin: 0 auto;
    min-height: 40px;
    min-width: 150px;
    outline: none;
    padding: 4px 29px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease;
    white-space: nowrap;
    width: auto;
    z-index: 10
}

@media only screen and (min-width:475px) {
    .wheel-win__button {
        font-size: 17px;
        min-height: 50px;
        min-width: 200px
    }
}

.wheel-win__button:hover {
    background: #67eb00
}

.wheel-win__button:active {
    -webkit-transform: translateY(2px);
    transform: translateY(2px)
}

.wheel-win__button-content {
    z-index: 2
}

.wheel-win__button-text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 3px rgba(0, 0, 0, .2)
}

.wheel-win__button-linear {
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1
}

.wheel-win__button-linear:before {
    background: #67eb00;
    bottom: -250px;
    content: "";
    display: block;
    height: 500px;
    position: absolute;
    right: -20%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 50%;
    z-index: 1
}

.wheel-win__button-linear-wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@-webkit-keyframes show-coins {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes show-coins {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes show-backdrop {
    0% {
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0)
    }

    to {
        backdrop-filter: blur(7.5px);
        -webkit-backdrop-filter: blur(7.5px)
    }
}

@keyframes show-backdrop {
    0% {
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0)
    }

    to {
        backdrop-filter: blur(7.5px);
        -webkit-backdrop-filter: blur(7.5px)
    }
}

@-webkit-keyframes toggle-content {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    25% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    75% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes toggle-content {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    25% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    75% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.wheel {
    --current-angle: 0deg;
    --process-rotate-duration: 4s;
    --odd-light-ball-filter: unset;
    --even-light-ball-filter: unset;
    margin: 0 auto;
    max-width: var(--wheel-size);
    overflow: hidden;
    padding-top: 12.8px;
    width: 100%
}

.wheel__inner {
    position: relative;
    width: 100%;
    z-index: 5
}

.wheel__loader-container {
    min-height: var(--wheel-size);
    position: relative;
    z-index: 10
}

.wheel__wheel {
    -webkit-transform: rotate(var(--current-angle));
    transform: rotate(var(--current-angle))
}

.wheel__wheel_isSpinning {
    transition: -webkit-transform var(--process-rotate-duration) ease-out;
    transition: transform var(--process-rotate-duration) ease-out;
    transition: transform var(--process-rotate-duration) ease-out, -webkit-transform var(--process-rotate-duration) ease-out
}

.wheel__wheel-img-wrapper {
    -webkit-animation: light-ball-switch 2s infinite;
    animation: light-ball-switch 2s infinite;
    display: flex
}

.wheel__wheel-img-wrapper img,
.wheel__wheel-img-wrapper svg {
    aspect-ratio: 1
}

.wheel__wheel-img-wrapper svg {
    height: auto;
    width: 100%
}

.wheel__wheel-wrapper {
    -webkit-transform: scale(.8) rotate(-100deg);
    transform: scale(.8) rotate(-100deg)
}

.wheel__wheel-wrapper_isAllImagesReady {
    -webkit-animation: rotate-wheel-wrapper .5s linear forwards;
    animation: rotate-wheel-wrapper .5s linear forwards
}

.wheel__tip {
    display: block;
    height: auto;
    position: absolute;
    right: 44%;
    top: -9.6px;
    width: 12%;
    z-index: 6
}

.wheel__tip_hidden {
    opacity: 0
}

.wheel__tip_isSpinFinished {
    -webkit-animation: toggle-tip 1s ease-out;
    animation: toggle-tip 1s ease-out
}

.wheel__center {
    height: 30%;
    inset: 0;
    margin: auto;
    position: absolute;
    -webkit-user-select: none;
    user-select: none;
    width: 30%;
    z-index: 5
}

.wheel__center_hidden {
    opacity: 0
}

.wheel__center-inner {
    border-radius: 50%;
    box-shadow: 0 0 100px 0 var(--wheel-box-shadow-color);
    cursor: pointer;
    position: relative
}

.wheel__center-bg,
.wheel__center-inner {
    height: 100%;
    width: 100%
}

.wheel__center-text {
    align-items: center;
    -webkit-animation: pulse-animation 3.3s linear infinite;
    animation: pulse-animation 3.3s linear infinite;
    display: flex;
    height: auto;
    inset: 0;
    justify-content: center;
    margin: auto;
    position: absolute;
    width: 105%
}

@-webkit-keyframes pulse-animation {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg)
    }

    50% {
        -webkit-transform: scale(1.2) rotate(8deg);
        transform: scale(1.2) rotate(8deg)
    }

    to {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg)
    }
}

.wheel__center-text-locale {
    -webkit-text-stroke: var(--wheel-center-text-stroke-width) var(--wheel-center-text-stroke-color);
    align-items: center;
    -webkit-animation: pulse-animation 3.3s linear infinite;
    animation: pulse-animation 3.3s linear infinite;
    display: flex;
    font-family: var(--wheel-center-text-ff);
    font-size: var(--wheel-center-text-fz);
    font-weight: var(--wheel-center-text-fw);
    height: auto;
    inset: 0;
    justify-content: center;
    line-height: var(--wheel-center-text-lh);
    margin: auto;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 105%
}

@keyframes pulse-animation {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg)
    }

    50% {
        -webkit-transform: scale(1.2) rotate(8deg);
        transform: scale(1.2) rotate(8deg)
    }

    to {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg)
    }
}

.wheel__data {
    align-items: center;
    -webkit-animation: animateOpenCloseFrames 1s linear forwards;
    animation: animateOpenCloseFrames 1s linear forwards;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.wheel__data-inner {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%
}

.wheel__data-item {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 6.25%;
    left: 0;
    padding: 0 calc(8.25% + 12.8px);
    position: absolute;
    top: 46.875%;
    width: 100%
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(72deg);
    transform: rotate(72deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(216deg);
    transform: rotate(216deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(288deg);
    transform: rotate(288deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(51.4285714286deg);
    transform: rotate(51.4285714286deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(102.8571428571deg);
    transform: rotate(102.8571428571deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(154.2857142857deg);
    transform: rotate(154.2857142857deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(205.7142857143deg);
    transform: rotate(205.7142857143deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(257.1428571429deg);
    transform: rotate(257.1428571429deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(308.5714285714deg);
    transform: rotate(308.5714285714deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(160deg);
    transform: rotate(160deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(280deg);
    transform: rotate(280deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(320deg);
    transform: rotate(320deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(72deg);
    transform: rotate(72deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(108deg);
    transform: rotate(108deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(216deg);
    transform: rotate(216deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(252deg);
    transform: rotate(252deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(288deg);
    transform: rotate(288deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(324deg);
    transform: rotate(324deg)
}

.wheel__data-item:nth-child(11) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(32.7272727273deg);
    transform: rotate(32.7272727273deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(65.4545454545deg);
    transform: rotate(65.4545454545deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(98.1818181818deg);
    transform: rotate(98.1818181818deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(130.9090909091deg);
    transform: rotate(130.9090909091deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(163.6363636364deg);
    transform: rotate(163.6363636364deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(196.3636363636deg);
    transform: rotate(196.3636363636deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(229.0909090909deg);
    transform: rotate(229.0909090909deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(261.8181818182deg);
    transform: rotate(261.8181818182deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(294.5454545455deg);
    transform: rotate(294.5454545455deg)
}

.wheel__data-item:nth-child(11) {
    -webkit-transform: rotate(327.2727272727deg);
    transform: rotate(327.2727272727deg)
}

.wheel__data-item:nth-child(12) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.wheel__data-item:nth-child(11) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg)
}

.wheel__data-item:nth-child(12) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg)
}

.wheel__data-item:nth-child(13) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(27.6923076923deg);
    transform: rotate(27.6923076923deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(55.3846153846deg);
    transform: rotate(55.3846153846deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(83.0769230769deg);
    transform: rotate(83.0769230769deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(110.7692307692deg);
    transform: rotate(110.7692307692deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(138.4615384615deg);
    transform: rotate(138.4615384615deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(166.1538461538deg);
    transform: rotate(166.1538461538deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(193.8461538462deg);
    transform: rotate(193.8461538462deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(221.5384615385deg);
    transform: rotate(221.5384615385deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(249.2307692308deg);
    transform: rotate(249.2307692308deg)
}

.wheel__data-item:nth-child(11) {
    -webkit-transform: rotate(276.9230769231deg);
    transform: rotate(276.9230769231deg)
}

.wheel__data-item:nth-child(12) {
    -webkit-transform: rotate(304.6153846154deg);
    transform: rotate(304.6153846154deg)
}

.wheel__data-item:nth-child(13) {
    -webkit-transform: rotate(332.3076923077deg);
    transform: rotate(332.3076923077deg)
}

.wheel__data-item:nth-child(14) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(25.7142857143deg);
    transform: rotate(25.7142857143deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(51.4285714286deg);
    transform: rotate(51.4285714286deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(77.1428571429deg);
    transform: rotate(77.1428571429deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(102.8571428571deg);
    transform: rotate(102.8571428571deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(128.5714285714deg);
    transform: rotate(128.5714285714deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(154.2857142857deg);
    transform: rotate(154.2857142857deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(205.7142857143deg);
    transform: rotate(205.7142857143deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(231.4285714286deg);
    transform: rotate(231.4285714286deg)
}

.wheel__data-item:nth-child(11) {
    -webkit-transform: rotate(257.1428571429deg);
    transform: rotate(257.1428571429deg)
}

.wheel__data-item:nth-child(12) {
    -webkit-transform: rotate(282.8571428571deg);
    transform: rotate(282.8571428571deg)
}

.wheel__data-item:nth-child(13) {
    -webkit-transform: rotate(308.5714285714deg);
    transform: rotate(308.5714285714deg)
}

.wheel__data-item:nth-child(14) {
    -webkit-transform: rotate(334.2857142857deg);
    transform: rotate(334.2857142857deg)
}

.wheel__data-item:nth-child(15) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(48deg);
    transform: rotate(48deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(72deg);
    transform: rotate(72deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(96deg);
    transform: rotate(96deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(168deg);
    transform: rotate(168deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(192deg);
    transform: rotate(192deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(216deg);
    transform: rotate(216deg)
}

.wheel__data-item:nth-child(11) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg)
}

.wheel__data-item:nth-child(12) {
    -webkit-transform: rotate(264deg);
    transform: rotate(264deg)
}

.wheel__data-item:nth-child(13) {
    -webkit-transform: rotate(288deg);
    transform: rotate(288deg)
}

.wheel__data-item:nth-child(14) {
    -webkit-transform: rotate(312deg);
    transform: rotate(312deg)
}

.wheel__data-item:nth-child(15) {
    -webkit-transform: rotate(336deg);
    transform: rotate(336deg)
}

.wheel__data-item:nth-child(16) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item:nth-child(2) {
    -webkit-transform: rotate(22.5deg);
    transform: rotate(22.5deg)
}

.wheel__data-item:nth-child(3) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.wheel__data-item:nth-child(4) {
    -webkit-transform: rotate(67.5deg);
    transform: rotate(67.5deg)
}

.wheel__data-item:nth-child(5) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wheel__data-item:nth-child(6) {
    -webkit-transform: rotate(112.5deg);
    transform: rotate(112.5deg)
}

.wheel__data-item:nth-child(7) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.wheel__data-item:nth-child(8) {
    -webkit-transform: rotate(157.5deg);
    transform: rotate(157.5deg)
}

.wheel__data-item:nth-child(9) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wheel__data-item:nth-child(10) {
    -webkit-transform: rotate(202.5deg);
    transform: rotate(202.5deg)
}

.wheel__data-item:nth-child(11) {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg)
}

.wheel__data-item:nth-child(12) {
    -webkit-transform: rotate(247.5deg);
    transform: rotate(247.5deg)
}

.wheel__data-item:nth-child(13) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.wheel__data-item:nth-child(14) {
    -webkit-transform: rotate(292.5deg);
    transform: rotate(292.5deg)
}

.wheel__data-item:nth-child(15) {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg)
}

.wheel__data-item:nth-child(16) {
    -webkit-transform: rotate(337.5deg);
    transform: rotate(337.5deg)
}

.wheel__data-item:nth-child(17) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.wheel__data-item_isPresent .wheel__data-icon {
    justify-content: flex-end
}

.wheel__data-currency,
.wheel__data-icon,
.wheel__data-value {
    align-items: center;
    display: flex;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: calc(6.25% + var(--wheel-data-additional-width))
}

.wheel__data-currency img,
.wheel__data-icon img,
.wheel__data-value img {
    height: auto;
    width: 100%
}

.wheel__data-value {
    -webkit-text-stroke: var(--wheel-data-value-stroke) var(--wheel-data-value-stroke-color);
    color: var(--wheel-data-value-color);
    font-size: var(--wheel-data-value-fz);
    letter-spacing: 1.28px
}

.wheel__data-currency {
    -webkit-text-stroke: var(--wheel-data-currency-stroke) var(--wheel-data-currency-stroke-color);
    color: var(--wheel-data-currency-color);
    font-size: var(--wheel-data-currency-fz)
}

.wheel__data-icon_isPresent {
    position: relative
}

.wheel__data-icon_isPresent:before {
    aspect-ratio: 1;
    background: var(--prize-with-icon-circle-bg);
    border-radius: 50%;
    content: "";
    display: block;
    height: auto;
    inset: 0;
    left: -4.8px;
    margin: auto;
    position: absolute;
    width: calc(100% + 9.6px);
    z-index: 1
}

.wheel__data-icon_isPresent img {
    z-index: 2
}

.wheel .light-ball-odd {
    -webkit-filter: var(--odd-light-ball-filter);
    filter: var(--odd-light-ball-filter)
}

.wheel .light-ball-even {
    -webkit-filter: var(--even-light-ball-filter);
    filter: var(--even-light-ball-filter)
}

@-webkit-keyframes light-ball-switch {
    0% {
        --odd-light-ball-bg-from: var(--light-ball-active-bg-from);
        --odd-light-ball-bg-to: var(--light-ball-active-bg-to);
        --even-light-ball-bg-from: var(--light-ball-disabled-bg-from);
        --even-light-ball-bg-to: var(--light-ball-disabled-bg-to);
        --odd-light-ball-filter: drop-shadow(0px 0px 17px #fcfddf);
        --even-light-ball-filter: unset
    }

    50% {
        --odd-light-ball-bg-from: var(--light-ball-disabled-bg-from);
        --odd-light-ball-bg-to: var(--light-ball-disabled-bg-to);
        --even-light-ball-bg-from: var(--light-ball-active-bg-from);
        --even-light-ball-bg-to: var(--light-ball-active-bg-to);
        --odd-light-ball-filter: unset;
        --even-light-ball-filter: drop-shadow(0px 0px 17px #fcfddf)
    }

    to {
        --odd-light-ball-bg-from: var(--light-ball-active-bg-from);
        --odd-light-ball-bg-to: var(--light-ball-active-bg-to);
        --even-light-ball-bg-from: var(--light-ball-disabled-bg-from);
        --even-light-ball-bg-to: var(--light-ball-disabled-bg-to);
        --odd-light-ball-filter: drop-shadow(0px 0px 17px #fcfddf);
        --even-light-ball-filter: unset
    }
}

@keyframes light-ball-switch {
    0% {
        --odd-light-ball-bg-from: var(--light-ball-active-bg-from);
        --odd-light-ball-bg-to: var(--light-ball-active-bg-to);
        --even-light-ball-bg-from: var(--light-ball-disabled-bg-from);
        --even-light-ball-bg-to: var(--light-ball-disabled-bg-to);
        --odd-light-ball-filter: drop-shadow(0px 0px 17px #fcfddf);
        --even-light-ball-filter: unset
    }

    50% {
        --odd-light-ball-bg-from: var(--light-ball-disabled-bg-from);
        --odd-light-ball-bg-to: var(--light-ball-disabled-bg-to);
        --even-light-ball-bg-from: var(--light-ball-active-bg-from);
        --even-light-ball-bg-to: var(--light-ball-active-bg-to);
        --odd-light-ball-filter: unset;
        --even-light-ball-filter: drop-shadow(0px 0px 17px #fcfddf)
    }

    to {
        --odd-light-ball-bg-from: var(--light-ball-active-bg-from);
        --odd-light-ball-bg-to: var(--light-ball-active-bg-to);
        --even-light-ball-bg-from: var(--light-ball-disabled-bg-from);
        --even-light-ball-bg-to: var(--light-ball-disabled-bg-to);
        --odd-light-ball-filter: drop-shadow(0px 0px 17px #fcfddf);
        --even-light-ball-filter: unset
    }
}

@-webkit-keyframes rotate-wheel-wrapper {
    0% {
        -webkit-transform: scale(.8) rotate(-100deg);
        transform: scale(.8) rotate(-100deg)
    }

    to {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes rotate-wheel-wrapper {
    0% {
        -webkit-transform: scale(.8) rotate(-100deg);
        transform: scale(.8) rotate(-100deg)
    }

    to {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes toggle-tip {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes toggle-tip {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.loader__container {
    align-items: center;
    -webkit-animation: animateOpenCloseFrames .25s linear forwards;
    animation: animateOpenCloseFrames .25s linear forwards;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100%
}

[dir=ltr] .loader__container {
    left: 0
}

[dir=rtl] .loader__container {
    right: 0
}

@keyframes animateOpenCloseFrames {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.loader__container_isExitAnim {
    -webkit-animation: animateOpenCloseBackwardsFrames .25s linear forwards;
    animation: animateOpenCloseBackwardsFrames .25s linear forwards
}

@keyframes animateOpenCloseBackwardsFrames {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.loader__wrapper {
    align-items: center;
    display: inline-block;
    display: flex;
    height: 30px;
    justify-content: center;
    position: relative;
    width: 70px
}

.loader__wrapper div {
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    background: #fff;
    border-radius: 50%;
    height: 13px;
    position: absolute;
    width: 13px
}

.loader__wrapper_colorType_dark div {
    background: #000
}

.loader__wrapper div:first-child {
    -webkit-animation: lds-ellipsis1 .6s infinite;
    animation: lds-ellipsis1 .6s infinite
}

[dir=ltr] .loader__wrapper div:first-child {
    left: 8px
}

[dir=rtl] .loader__wrapper div:first-child {
    right: 8px
}

.loader__wrapper div:nth-child(2) {
    -webkit-animation: lds-ellipsis2 .6s infinite;
    animation: lds-ellipsis2 .6s infinite
}

[dir=ltr] .loader__wrapper div:nth-child(2) {
    left: 8px
}

[dir=rtl] .loader__wrapper div:nth-child(2) {
    right: 8px
}

.loader__wrapper div:nth-child(3) {
    -webkit-animation: lds-ellipsis2 .6s infinite;
    animation: lds-ellipsis2 .6s infinite
}

[dir=ltr] .loader__wrapper div:nth-child(3) {
    left: 32px
}

[dir=rtl] .loader__wrapper div:nth-child(3) {
    right: 32px
}

.loader__wrapper div:nth-child(4) {
    -webkit-animation: lds-ellipsis3 .6s infinite;
    animation: lds-ellipsis3 .6s infinite
}

[dir=ltr] .loader__wrapper div:nth-child(4) {
    left: 56px
}

[dir=rtl] .loader__wrapper div:nth-child(4) {
    right: 56px
}

@-webkit-keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@-webkit-keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    to {
        -webkit-transform: translate(24px);
        transform: translate(24px)
    }
}

@keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    to {
        -webkit-transform: translate(24px);
        transform: translate(24px)
    }
}

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

.wheel-page-spin_hidden {
    opacity: 0
}

.wheel-page-spin__inner {
    max-width: var(--wheel-button-width);
    min-width: var(--wheel-button-width);
    position: relative;
    top: calc(var(--wheel-button-height)*-1/2)
}

.wheel-page-spin__button {
    align-items: center;
    background: var(--spin-button-left-bg);
    border: none;
    border-bottom: 8px solid var(--spin-button-border-bottom-color);
    border-radius: 8px;
    color: var(--spin-button-text-color);
    display: flex;
    font-size: var(--wheel-button-fz);
    font-weight: 700;
    height: var(--wheel-button-height);
    justify-content: center;
    line-height: 1;
    margin: 0 auto;
    outline: none;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease;
    white-space: nowrap;
    width: 100%;
    z-index: 10
}

.wheel-page-spin__button:hover {
    background: var(--spin-button-right-bg)
}

.wheel-page-spin__button-content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    z-index: 2
}

.wheel-page-spin__button-text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 3px rgba(0, 0, 0, .2)
}

.wheel-page-spin__button-text-wrapper {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.wheel-page-spin__button-linear {
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1
}

.wheel-page-spin__button-linear:before {
    background: var(--spin-button-right-bg);
    bottom: -250px;
    content: "";
    display: block;
    height: 500px;
    position: absolute;
    width: 50%;
    z-index: 1
}

[dir=ltr] .wheel-page-spin__button-linear:before {
    right: -20%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

[dir=rtl] .wheel-page-spin__button-linear:before {
    left: -20%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.wheel-page-spin__button-linear-wrapper {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%
}

[dir=ltr] .wheel-page-spin__button-linear-wrapper {
    left: 0
}

[dir=rtl] .wheel-page-spin__button-linear-wrapper {
    right: 0
}

.wheel-page-spin__coin {
    height: 90%;
    position: absolute;
    top: 25%;
    width: auto;
    z-index: 8
}

@media only screen and (min-width:1024px) {
    .wheel-page-spin__coin {
        height: 100%
    }
}

.wheel-page-spin__coin_left {
    -webkit-animation: moveTopBottom 3s linear infinite;
    animation: moveTopBottom 3s linear infinite
}

[dir=ltr] .wheel-page-spin__coin_left {
    left: -11%
}

[dir=rtl] .wheel-page-spin__coin_left {
    right: -11%
}

@media only screen and (min-width:1024px) {
    [dir=ltr] .wheel-page-spin__coin_left {
        left: calc(-11% - 16px)
    }

    [dir=rtl] .wheel-page-spin__coin_left {
        right: calc(-11% - 16px)
    }
}

.wheel-page-spin__coin_right {
    -webkit-animation: moveTopBottom 4s linear infinite;
    animation: moveTopBottom 4s linear infinite;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

[dir=ltr] .wheel-page-spin__coin_right {
    right: -11%
}

[dir=rtl] .wheel-page-spin__coin_right {
    left: -11%
}

@media only screen and (min-width:1024px) {
    [dir=ltr] .wheel-page-spin__coin_right {
        right: calc(-11% - 16px)
    }

    [dir=rtl] .wheel-page-spin__coin_right {
        left: calc(-11% - 16px)
    }
}

.wheel-page-spin__leg {
    position: absolute;
    top: -120%;
    width: 100%;
    z-index: 3
}

@-webkit-keyframes moveTopBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    30% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px)
    }

    70% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes moveTopBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    30% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px)
    }

    70% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes open-modal {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes slide-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.wheel-page-timer {
    display: flex;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 80%
}

.wheel-page-timer__clock {
    align-items: center;
    background: var(--wheel-timer-left-bg);
    border-bottom: 6.4px solid var(--wheel-timer-border-bottom-color);
    border-radius: 6px;
    color: var(--wheel-timer-text-color);
    display: flex;
    flex-direction: column;
    font-weight: 700;
    height: var(--wheel-timer-height);
    justify-content: center;
    line-height: 1;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 16px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease;
    z-index: 2
}

@media only screen and (min-width:1024px) {
    .wheel-page-timer__clock {
        padding: 0 32px
    }
}

.wheel-page-timer__clock:before {
    background: var(--wheel-timer-right-bg);
    bottom: -250px;
    content: "";
    display: block;
    height: 500px;
    position: absolute;
    width: 50%;
    z-index: 1
}

[dir=ltr] .wheel-page-timer__clock:before {
    right: -25%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

[dir=rtl] .wheel-page-timer__clock:before {
    left: -25%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.wheel-page-timer__clock-label {
    display: block;
    font-size: var(--wheel-timer-label-fz);
    font-weight: 700;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    text-shadow: 0 3px rgba(0, 0, 0, .2);
    white-space: nowrap;
    z-index: 2
}

.wheel-page-timer__clock-time {
    align-items: center;
    display: flex;
    font-size: var(--wheel-timer-time-fz);
    font-weight: 600;
    gap: 5px;
    justify-content: center;
    margin: 2px;
    overflow: hidden;
    position: relative;
    z-index: 2
}

.wheel-page-timer__clock-text {
    align-items: center;
    display: flex;
    gap: 13px
}

[dir=ltr] .wheel-page-timer__clock-text {
    margin-left: 8px
}

[dir=rtl] .wheel-page-timer__clock-text {
    margin-right: 8px
}

.wheel-page-timer__clock-text-p {
    color: hsla(0, 0%, 100%, .6);
    font-size: 6px;
    margin: 3px 0 0;
    z-index: 2
}

.wheel-page-timer__digit {
    display: inline-block;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.wheel-page-timer__digit-animate {
    -webkit-animation: slideDown .3s forwards;
    animation: slideDown .3s forwards;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
}

@-webkit-keyframes slideDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.choose-sport {
    align-items: center;
    background: #181818;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    max-width: 26rem;
    position: relative;
    width: 85vw
}

.choose-sport__content {
    padding: 1rem;
    width: 100%
}

.choose-sport__sport {
    align-items: center;
    background: #1f1f1f;
    display: flex;
    padding: 1rem
}

.choose-sport__sport:not(:last-child) {
    margin-bottom: 1rem
}

.choose-sport__sport-icon {
    height: 2rem;
    width: 2rem
}

.choose-sport__sport-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500
}

[dir=ltr] .choose-sport__sport-text {
    margin-left: .6rem
}

[dir=rtl] .choose-sport__sport-text {
    margin-right: .6rem
}

.button_colors_green {
    background-color: #23a152 !important;
    border-color: #23a152 !important;
    border-radius: .1875rem;
    color: #fff !important
}

.button_colors_green:hover {
    border-color: #23a152;
    opacity: .8
}

.button_colors_green:focus,
.button_colors_green:hover {
    background-color: #23a152;
    color: #fff
}

.button_colors_green:disabled {
    background-color: #23a152;
    opacity: .5
}

.button_colors_green:disabled:hover {
    opacity: .5
}

.button_colors_yellow {
    background-color: #fcd301 !important;
    border-color: #fcd301 !important;
    border-radius: .1875rem;
    color: #181818 !important
}

.button_colors_yellow:hover {
    border-color: #fcd301;
    opacity: .8
}

.button_colors_yellow:focus,
.button_colors_yellow:hover {
    background-color: #fcd301;
    color: #181818
}

.button_colors_yellow:disabled {
    background-color: #fcd301;
    opacity: .5
}

.button_colors_yellow:disabled:hover {
    opacity: .5
}

.button_colors_white {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #000 !important
}

.button_colors_white:hover {
    border-color: #fff;
    opacity: .8
}

.button_colors_white:focus,
.button_colors_white:hover {
    background-color: #fff;
    color: #000
}

.button_colors_white:disabled {
    background-color: #fff;
    opacity: .5
}

.button_colors_white:disabled:hover {
    opacity: .5
}

.button_colors_orange {
    background-color: #ffb124 !important;
    border-color: #ffb124 !important;
    color: #000 !important
}

.button_colors_orange:hover {
    border-color: #ffb124;
    opacity: .8
}

.button_colors_orange:focus,
.button_colors_orange:hover {
    background-color: #ffb124;
    color: #000
}

.button_colors_orange:disabled {
    background-color: #ffb124;
    opacity: .5
}

.button_colors_orange:disabled:hover {
    opacity: .5
}

.button_colors_main {
    background-color: #1a7051 !important;
    border-color: #1a7051 !important
}

.button_colors_main:hover {
    background-color: #1a7051;
    border-color: #1a7051;
    opacity: .8
}

.button_colors_main:focus {
    background-color: #1a7051
}

.button_colors_main:disabled {
    background-color: #1a7051;
    opacity: .5
}

.button_colors_main:disabled:hover {
    opacity: .5
}

.button_colors_tertiary {
    background-color: #c70303 !important;
    border-color: #c70303 !important
}

.button_colors_tertiary:hover {
    background-color: #c70303;
    border-color: #c70303;
    opacity: .8
}

.button_colors_tertiary:focus {
    background-color: #c70303
}

.button_colors_tertiary:disabled {
    background-color: #c70303;
    opacity: .5
}

.button_colors_tertiary:disabled:hover {
    opacity: .5
}

.button_colors_secondary {
    background-color: #3498ff !important;
    border-color: #3498ff !important
}

.button_colors_secondary:hover {
    background-color: #3498ff;
    border-color: #3498ff;
    opacity: .8
}

.button_colors_secondary:focus {
    background-color: #3498ff
}

.button_colors_secondary:disabled {
    background-color: #3498ff;
    opacity: .5
}

.button_colors_secondary:disabled:hover {
    opacity: .5
}

.button:disabled {
    cursor: not-allowed
}

.button_appearance_ghost {
    background-color: transparent;
    color: #fff
}

.button_appearance_ghost:hover {
    background: transparent;
    color: #fff;
    opacity: .8
}

.button__button-container {
    height: 100%;
    position: relative;
    width: 100%
}

.button__button-container button {
    align-items: center;
    border-radius: .125rem;
    display: flex;
    font-family: Roboto Condensed, sans-serif !important;
    font-size: .875rem;
    height: 100%;
    justify-content: center;
    text-transform: capitalize;
    width: 100%
}

@media only screen and (max-width:475px) {
    .button__button-container button {
        font-size: 14px
    }
}

.button__button-container_uppercase button {
    text-transform: uppercase !important
}

.button__button-container_disabled {
    cursor: not-allowed
}

.button__button-container_loading {
    cursor: progress
}

.button__icon-svg {
    height: .875rem
}

[dir=ltr] .button__icon-svg {
    margin-right: .1rem
}

[dir=rtl] .button__icon-svg {
    margin-left: .1rem
}

.button_rounded {
    border-radius: 150px !important
}

.input__wrapper {
    height: 100%;
    position: relative;
    width: 100%
}

.input__wrapper_isFlex {
    align-items: center;
    display: flex
}

[dir=ltr] .input_isPassword .MuiInputBase-input {
    padding-right: 35px
}

[dir=rtl] .input_isPassword .MuiInputBase-input {
    padding-left: 35px
}

.input__left-icon {
    height: 100%;
    width: 100%
}

.input__left-icon * {
    fill: #d5d5d5
}

.input__left-icon-wrapper {
    align-items: center;
    background: #1f1f1f;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 50px
}

.input__error {
    bottom: -19px;
    color: red;
    font-size: 1.2rem;
    position: absolute
}

[dir=ltr] .input__error {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

[dir=rtl] .input__error {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%)
}

.input__bottom-text {
    text-align: center
}

.input .MuiInputAdornment-positionEnd svg path {
    fill: #9a9a9a
}

.input input:-webkit-autofill,
.input input:-webkit-autofill:active,
.input input:-webkit-autofill:focus,
.input input:-webkit-autofill:hover {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: inset 0 0 0 43px #151515 !important
}

.input.Mui-focused {
    border: none;
    box-shadow: none !important
}

.sign-in {
    align-items: center;
    background: #151515;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 500px
}

@media only screen and (max-width:767px) {
    .sign-in {
        width: 320px
    }
}

.sign-in__header {
    align-items: center;
    display: flex;
    height: 180px;
    justify-content: center;
    width: 100%
}

.sign-in__header-img {
    width: 100%
}

@media only screen and (max-width:767px) {
    .sign-in__header-img {
        height: 180px;
        width: auto
    }
}

.sign-in__form {
    display: flex;
    flex-direction: column;
    width: 100%
}

.sign-in__form-header {
    align-items: center;
    border-bottom: 1px solid #2b2b2b;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    justify-content: space-between;
    padding: 24px
}

.sign-in__form-close {
    cursor: pointer;
    height: 20px;
    width: 20px
}

.sign-in__form-close * {
    fill: #838383
}

.sign-in__group {
    padding: 20px 24px;
    width: 100%
}

.sign-in__group:not(:last-of-type) {
    padding: 20px 24px 0
}

.sign-in__label {
    margin-bottom: 8px
}

.sign-in__input .input__wrapper .MuiInputBase-root {
    background: transparent !important
}

.sign-in__input .input__wrapper input {
    border: 1px solid #5f5f5f;
    border-radius: 8px;
    box-sizing: border-box;
    height: 52px;
    padding: 14px 16px
}

.sign-in__input_error>.input__wrapper input {
    border: 1px solid #cb0101 !important
}

.sign-in__input_correct>.input__wrapper input {
    border: 1px solid #056205 !important
}

.sign-in__error {
    background: #cb0101;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    opacity: .5;
    padding: 2px 11px;
    width: 100%
}

.sign-in__button {
    align-items: center;
    border-top: 1px solid #2b2b2b;
    display: flex;
    justify-content: center;
    padding: 24px
}

.sign-in__button button {
    border-radius: 8px;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 34px;
    padding: 0;
    text-align: center
}

.rs-picker-select-menu {
    z-index: 2000
}

.modal {
    background-color: rgba(0, 0, 0, .4);
    height: 100%;
    inset: 0;
    position: fixed;
    width: 100%;
    z-index: 1000
}

.modal_isFull {
    height: 100vh;
    top: 0
}

.modal__app-container {
    align-items: center;
    display: flex;
    font-size: 1rem;
    height: 100%;
    justify-content: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100vw;
    z-index: 15
}

@media only screen and (min-width:1450px) {
    .modal__app-container {
        padding: 2rem 0 0
    }
}

.modal__wrapper {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, .65);
    height: var(--vh);
    overflow-y: auto;
    position: fixed
}

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

.modal__content-container {
    overflow: hidden;
    position: relative
}

.modal__content-container_bordered {
    border-radius: .25rem
}

.modal__close-block,
.modal__save-block {
    align-items: center;
    background-color: #3f4451;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 5px;
    width: 30px;
    z-index: 10000
}

[dir=ltr] .modal__close-block,
[dir=ltr] .modal__save-block {
    right: 5px
}

[dir=rtl] .modal__close-block,
[dir=rtl] .modal__save-block {
    left: 5px
}

.modal__close-img {
    height: 60%;
    width: 60%
}

.modal__save-block {
    height: 25px;
    width: 90px
}

[dir=rtl] .Toastify__bounce-exit--top-right {
    -webkit-animation-name: Toastify__bounceOutLeft;
    animation-name: Toastify__bounceOutLeft
}

[dir=rtl] .Toastify__bounce-enter--top-right {
    -webkit-animation-name: Toastify__bounceInLeft;
    animation-name: Toastify__bounceInLeft
}

.Toastify__toast-container--top-right {
    border-radius: 3px
}

@media only screen and (max-width:767px) {
    .Toastify__toast-container--top-right {
        top: 2rem;
        width: 92%
    }

    [dir=ltr] .Toastify__toast-container--top-right {
        left: 1rem
    }

    [dir=rtl] .Toastify__toast-container--top-right {
        right: 1rem
    }
}

.Toastify__toast {
    background: #2f2a2a;
    border-radius: 8px
}

.footer-desktop {
    align-items: center;
    box-sizing: border-box;
    color: #d5d5d5;
    display: flex;
    flex-direction: column;
    height: -webkit-max-content;
    height: max-content;
    margin-top: auto;
    padding: 2.3rem 0 .01rem;
    width: 100%
}

.footer-desktop li {
    margin: 10px 0
}

.footer-desktop__heading-link {
    transition: all .3s ease
}

.footer-desktop__heading-link:hover {
    color: #fcd301
}

.footer-desktop__payments-wrapper {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 15px;
    text-align: center
}

.footer-desktop__row-payments {
    background: #1f1f1f;
    width: 80%
}

.footer-desktop__payment {
    height: 46px
}

.footer-desktop__row-copyright {
    background: #111;
    font-size: 12px;
    line-height: 22px;
    margin-top: 20px;
    padding: 40px 0;
    text-align: center;
    width: 80%
}

.footer-desktop__max-gain {
    color: #9f9f9f;
    font-size: 12px;
    margin-top: 15px
}

.footer-desktop__bookmaker-copyright {
    margin-top: 25px
}

.footer-desktop__heading {
    color: #fff;
    font-size: inherit;
    font-weight: 800;
    margin-bottom: 12px
}

.footer-desktop__row-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%
}

.footer-desktop__social-media-item {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    flex-shrink: 0;
    height: 40px;
    margin-bottom: 10px;
    text-align: center;
    transition: all .3s ease;
    width: 40px
}

[dir=ltr] .footer-desktop__social-media-item {
    margin-right: 10px
}

[dir=rtl] .footer-desktop__social-media-item {
    margin-left: 10px
}

.footer-desktop__social-media-item:hover {
    background: #0b0b0b;
    border: 1px solid #0b0b0b
}

.footer-desktop__social-media-item:hover * {
    fill: #d5d5d5
}

.footer-desktop__social-icon {
    padding: 8px 0
}

.footer-desktop__social-icon svg {
    height: 1.4rem;
    width: 1.4rem
}

.footer-desktop__social-icon svg * {
    fill: #fff
}

.footer-mobile {
    margin-top: auto
}

.footer-mobile__payments-wrapper {
    align-items: center;
    display: flex;
    gap: .3125rem;
    justify-content: center;
    padding: 30px .3125rem
}

.footer-mobile__payment {
    max-height: 46px;
    max-width: 103.5px;
    width: 23.8095238095%
}

.footer-mobile__social-links {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 20px 0
}

.footer-mobile__social-icon {
    margin: 7px
}

.footer-mobile__social-icon svg {
    height: 27px;
    width: 27px
}

.footer-mobile__social-icon svg * {
    fill: #fff
}

.footer-mobile__max-gain {
    color: #9f9f9f;
    font-size: 12px
}

.bottom-header,
.footer-mobile__max-gain {
    display: flex;
    justify-content: center;
    width: 100%
}

.bottom-header {
    align-items: center;
    border-top: 1px solid #6e6e6e;
    height: 60px
}

.bottom-header__scroll-container {
    align-items: center;
    display: flex;
    gap: 21px;
    height: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 60px
}

.bottom-header__link {
    align-items: center;
    color: #fff;
    display: flex;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    white-space: nowrap
}

.bottom-header__link:hover,
.bottom-header__link_isActive {
    color: #d6c32a
}

.bottom-header__link-new {
    background: #ffdf1b;
    border-radius: 2px;
    color: #000;
    padding: .1rem .4rem;
    position: absolute;
    top: -19px
}

[dir=ltr] .bottom-header__link-new {
    left: calc(100% - 10px)
}

[dir=rtl] .bottom-header__link-new {
    right: calc(100% - 10px)
}

.cashback-timer {
    height: 100%;
    width: 9rem
}

[dir=ltr] .cashback-timer {
    margin-right: 32px
}

[dir=rtl] .cashback-timer {
    margin-left: 32px
}

.cashback-timer__container {
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px #ffb401;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 100%;
    padding: 10px;
    position: relative;
    width: 100%
}

[dir=ltr] .cashback-timer__container {
    background: linear-gradient(127.71deg, #ffb401 -33.87%, #ffb401 69.19%)
}

[dir=rtl] .cashback-timer__container {
    background: linear-gradient(-127.71deg, #ffb401 -33.87%, #ffb401 69.19%)
}

.cashback-timer img {
    height: 100%;
    position: absolute
}

[dir=ltr] .cashback-timer__cash {
    border-radius: 0 0 0 10px;
    left: 0
}

[dir=rtl] .cashback-timer__cash {
    border-radius: 0 0 10px 0;
    right: 0
}

.timer-clock {
    white-space: nowrap
}

[dir=ltr] .timer-clock {
    margin-left: auto;
    text-align: right
}

[dir=rtl] .timer-clock {
    margin-right: auto;
    text-align: left
}

.timer-clock__label {
    color: #fff;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .5px
}

.timer-clock__time {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 3px;
    overflow: inherit;
    text-overflow: ellipsis;
    white-space: nowrap
}

.clock {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center
}

.clock__date,
.clock__time {
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500
}

.clock__splitter {
    color: #464646;
    margin: 0 8px
}

.clock__gmt {
    color: #5c5c5c;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px
}

[dir=ltr] .clock__gmt {
    margin-left: 5px
}

[dir=rtl] .clock__gmt {
    margin-right: 5px
}

.select-lang-desktop {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative
}

.select-lang-desktop__top {
    border: 1px solid #6e6e6e;
    border-radius: 8px
}

.select-lang-desktop__item {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 10px 12px
}

.select-lang-desktop__item:not(.select-lang-desktop__item_current):hover .select-lang-desktop__item-description {
    color: #d6c32a
}

.select-lang-desktop__item-img {
    border-radius: 100%;
    height: 24px;
    width: 24px
}

.select-lang-desktop__item-description {
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 500;
    text-transform: uppercase
}

.select-lang-desktop__item:not(:last-child) {
    border-bottom: 1px solid hsla(0, 0%, 43%, .5)
}

.select-lang-desktop__items {
    -webkit-animation: reduceVertical .3s linear;
    animation: reduceVertical .3s linear;
    background: #111;
    border: 0;
    border-radius: 8px;
    height: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 46px;
    width: 100%;
    z-index: 1
}

@media only screen and (max-width:1024px) {
    .select-lang-desktop__items {
        background: #4e4e4e
    }
}

.select-lang-desktop__items_open {
    -webkit-animation: incraseVertical .3s linear forwards;
    animation: incraseVertical .3s linear forwards;
    border: 1px solid transparent;
    height: auto
}

@-webkit-keyframes incraseVertical {
    0% {
        border: 1px solid transparent;
        max-height: 0;
        opacity: 0
    }

    to {
        border: 1px solid #6e6e6e;
        max-height: 400%;
        opacity: 1
    }
}

@keyframes incraseVertical {
    0% {
        border: 1px solid transparent;
        max-height: 0;
        opacity: 0
    }

    to {
        border: 1px solid #6e6e6e;
        max-height: 400%;
        opacity: 1
    }
}

@-webkit-keyframes reduceVertical {
    0% {
        max-height: 400%;
        opacity: 1
    }

    to {
        max-height: 0;
        opacity: 0
    }
}

@keyframes reduceVertical {
    0% {
        max-height: 400%;
        opacity: 1
    }

    to {
        max-height: 0;
        opacity: 0
    }
}

.select-lang-mobile {
    background: #dbb70a;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative
}

@media only screen and (max-width:767px) {
    .select-lang-mobile {
        background-color: transparent
    }
}

.select-lang-mobile__current-flag {
    height: 3.2rem;
    width: 3.2rem
}

[dir=ltr] .select-lang-mobile__current-flag {
    margin-left: 0;
    transition: margin-left .4s ease-in-out
}

[dir=rtl] .select-lang-mobile__current-flag {
    margin-right: 0;
    transition: margin-right .4s ease-in-out
}

@media only screen and (max-width:767px) {
    [dir=ltr] .select-lang-mobile__current-flag_open {
        margin-left: 0
    }

    [dir=rtl] .select-lang-mobile__current-flag_open {
        margin-right: 0
    }
}

.select-lang-mobile__flag {
    width: 1.375rem
}

[dir=ltr] .select-lang-mobile__flag {
    margin-right: .8rem
}

[dir=rtl] .select-lang-mobile__flag {
    margin-left: .8rem
}

.select-lang-mobile__item {
    align-items: center;
    background: #1f1f1f;
    box-sizing: border-box;
    color: #d5d5d5;
    display: flex;
    font-size: .9rem;
    height: 3.115rem;
    padding: 0 .9375rem;
    white-space: pre;
    width: 100%
}

@media only screen and (min-width:768px) {
    .select-lang-mobile__item:hover {
        background: #4f4f4f
    }
}

@media only screen and (max-width:767px) {
    .select-lang-mobile__item {
        align-items: center;
        background: #49494a;
        border-bottom: 1px solid #171c2c;
        border-radius: 3px;
        box-sizing: border-box;
        color: #bbb;
        display: flex;
        font-size: .875rem;
        height: 2rem;
        padding: 0 .9375rem;
        white-space: pre;
        width: 7.6875rem
    }

    .select-lang-mobile__item_active {
        background: #23a152;
        color: #fff;
        position: relative
    }

    .select-lang-mobile__item_active:after {
        color: #fff;
        content: "✓";
        position: absolute;
        width: .9725rem
    }

    [dir=ltr] .select-lang-mobile__item_active:after {
        right: 3px
    }

    [dir=rtl] .select-lang-mobile__item_active:after {
        left: 3px
    }
}

.select-lang-mobile__items {
    background-color: #fff;
    border: 1px solid #171c2c;
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 3
}

[dir=ltr] .select-lang-mobile__items {
    right: 0
}

[dir=rtl] .select-lang-mobile__items {
    left: 0
}

.select-lang-mobile__items_open {
    display: block
}

@media only screen and (max-width:767px) {
    .select-lang-mobile__items {
        background-color: transparent;
        border: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        position: static
    }
}

.select-lang-mobile__top {
    align-items: center;
    color: #000;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 0 .6rem
}

.select-lang-mobile__top-arrow {
    align-items: center;
    display: flex;
    transition: -webkit-transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in;
    width: .525rem;
    will-change: transform
}

[dir=ltr] .select-lang-mobile__top-arrow {
    margin-left: 5px
}

[dir=rtl] .select-lang-mobile__top-arrow {
    margin-right: 5px
}

.select-lang-mobile__top-arrow * {
    fill: #000
}

[dir=ltr] .select-lang-mobile__top_open .select-lang-mobile__top-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

[dir=rtl] .select-lang-mobile__top_open .select-lang-mobile__top-arrow {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

@media only screen and (max-width:767px) {
    .select-lang-mobile__top {
        display: none
    }
}

.wheel-button {
    --roulette-icon-size: 42px;
    -webkit-animation: wheelSpin 1.6s infinite;
    animation: wheelSpin 1.6s infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    cursor: pointer;
    -webkit-filter: drop-shadow(0 0 8px #ffb401);
    filter: drop-shadow(0 0 8px #ffb401);
    height: var(--roulette-icon-size);
    width: var(--roulette-icon-size)
}

@media only screen and (min-width:1024px) {
    .wheel-button {
        --roulette-icon-size: 42px
    }
}

@-webkit-keyframes wheelSpin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes wheelSpin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.top-header {
    align-items: center;
    display: flex;
    height: 70px;
    justify-content: space-between;
    padding: 12px 24px;
    width: 100%
}

.top-header__left,
.top-header__right {
    height: 40px
}

.top-header__logo {
    height: 22px;
    width: 140px
}

.top-header__logo-link {
    height: 22px
}

[dir=ltr] .top-header__logo-link {
    margin-right: 8px
}

[dir=rtl] .top-header__logo-link {
    margin-left: 8px
}

.top-header__left,
.top-header__time {
    align-items: center;
    display: flex;
    justify-content: center
}

.top-header__time {
    gap: 8px;
    height: 100%
}

[dir=ltr] .top-header__time {
    margin-left: 20px
}

[dir=rtl] .top-header__time {
    margin-right: 20px
}

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

.top-header__wheel {
    height: 100%
}

[dir=ltr] .top-header__wheel {
    margin-right: 12px
}

[dir=rtl] .top-header__wheel {
    margin-left: 12px
}

.top-header__cashback {
    height: 100%
}

.top-header__user {
    gap: 16px;
    height: 100%
}

.top-header__user,
.top-header__user-block {
    align-items: center;
    display: flex;
    justify-content: center
}

[dir=ltr] .top-header__user-block_balance {
    direction: ltr
}

[dir=rtl] .top-header__user-block_balance {
    direction: rtl
}

[dir=ltr] .top-header__user-block_balance:dir(rtl) {
    direction: rtl
}

[dir=rtl] .top-header__user-block_balance:dir(rtl) {
    direction: ltr
}

.top-header__user-label {
    color: #5c5c5c;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500
}

.top-header__user-balance,
.top-header__user-id,
.top-header__user-username {
    color: #fff;
    font-family: Roboto, sans-serif
}

.top-header__user-id {
    font-size: 14px;
    font-weight: 700
}

.top-header__user-username {
    font-size: 16px;
    font-weight: 500;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis
}

[dir=ltr] .top-header__user-username {
    direction: ltr
}

[dir=rtl] .top-header__user-username {
    direction: rtl
}

[dir=ltr] .top-header__user-username:dir(rtl) {
    direction: rtl
}

[dir=rtl] .top-header__user-username:dir(rtl) {
    direction: ltr
}

.top-header__user-balance {
    font-size: 16px;
    font-weight: 700
}

.top-header__user-balance_bonus {
    color: #d6c32a
}

.top-header__user-arrow {
    transition: -webkit-transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in;
    will-change: transform
}

[dir=ltr] .top-header__user-arrow {
    margin-left: 5px
}

[dir=rtl] .top-header__user-arrow {
    margin-right: 5px
}

[dir=ltr] .top-header__user-arrow_open {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

[dir=rtl] .top-header__user-arrow_open {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.top-header__user-info,
.top-header__user-wallet {
    align-items: flex-start;
    background: hsla(0, 0%, 100%, .05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 50px;
    justify-content: center;
    padding: 8px 12px
}

.top-header__user-info {
    cursor: pointer;
    max-width: 150px;
    position: relative
}

.top-header__dropdown {
    background: #111;
    border: 1px solid #6e6e6e;
    border-radius: 12px;
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    top: calc(100% + 8px);
    z-index: 99
}

[dir=ltr] .top-header__dropdown {
    right: 0
}

[dir=rtl] .top-header__dropdown {
    left: 0
}

.top-header__dropdown-item {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    padding: 16px;
    white-space: nowrap
}

.top-header__dropdown-item:not(:last-child) {
    border-bottom: 1px solid #6e6e6e
}

.top-header__dropdown-item:hover {
    background: #222;
    color: #d6c32a
}

.top-header__button {
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    width: 170px
}

.top-header__button button {
    background: #d6c32a !important;
    box-shadow: 0 0 50px 0 rgba(214, 195, 42, .3) !important;
    color: #fff !important;
    font-family: Roboto, sans-serif !important;
    font-size: 14px;
    font-weight: 700
}

.desktop-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky
}

.desktop-header,
.header-block-mobile {
    background: #111;
    width: 100%;
    z-index: 1001
}

.header-block-mobile {
    box-sizing: border-box;
    font-size: .95rem;
    max-height: 109px;
    min-height: 58px;
    position: fixed;
    top: 0
}

[dir=ltr] .header-block-mobile {
    left: 0
}

[dir=rtl] .header-block-mobile {
    right: 0
}

.header-block-mobile__top {
    align-items: center;
    display: flex;
    height: 58px;
    justify-content: space-between;
    padding: 5px 15px;
    position: relative;
    width: 100%
}

.header-block-mobile__down {
    height: 51px;
    padding: .4375rem
}

.header-block-mobile__toggle {
    height: 1.25rem;
    width: 1.25rem
}

.header-block-mobile__toggle * {
    fill: #fff
}

.header-block-mobile__logo {
    display: block;
    height: 100%;
    width: 100%
}

.header-block-mobile__logo-wrapper {
    display: flex;
    max-width: 130px
}

[dir=ltr] .header-block-mobile__logo-wrapper {
    margin-left: 40px
}

[dir=rtl] .header-block-mobile__logo-wrapper {
    margin-right: 40px
}

.header-block-mobile__user {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    min-width: 90px;
    position: relative
}

.header-block-mobile__user-currency {
    color: #fff;
    font-size: 10px;
    white-space: nowrap
}

.header-block-mobile__user-icon {
    display: block;
    height: auto;
    width: 94%
}

.header-block-mobile__user-icon * {
    fill: #111
}

.header-block-mobile__user-icon-wrapper {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    display: flex;
    height: 1.3125rem;
    justify-content: center;
    width: 1.3125rem
}

.header-block-mobile__user-icon-wrapper_open {
    height: 1.75rem;
    width: 1.75rem
}

.header-block-mobile__buttons {
    display: flex;
    width: 100%
}

.header-block-mobile__buttons-item {
    height: 2.35rem;
    text-decoration: none;
    width: 50%
}

.install-pwa-notification {
    background: rgba(0, 0, 0, .4);
    height: 100vh;
    position: absolute;
    width: 100vw;
    z-index: 999
}

.install-pwa-notification__notification {
    align-items: flex-start;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: hsla(0, 0%, 87%, .73);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-family: Inter;
    max-width: 400px;
    padding: 10px;
    position: absolute;
    width: 90%;
    z-index: 1000
}

[dir=ltr] .install-pwa-notification__notification {
    left: 50%
}

[dir=rtl] .install-pwa-notification__notification {
    right: 50%
}

.install-pwa-notification__title {
    align-items: center;
    display: flex;
    gap: 5px;
    margin-bottom: 10px
}

.install-pwa-notification__title span {
    color: rgba(0, 0, 0, .52);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase
}

.install-pwa-notification__logo {
    height: 20px;
    width: 20px
}

.install-pwa-notification__install-app {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: capitalize
}

.install-pwa-notification__play-everywhere {
    color: #000;
    font-size: 16px;
    font-weight: 400
}

.install-pwa-notification__time {
    color: rgba(0, 0, 0, .52);
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    top: 10px
}

[dir=ltr] .install-pwa-notification__time {
    right: 10px
}

[dir=rtl] .install-pwa-notification__time {
    left: 10px
}

@media only screen and (min-width:768px) {
    .install-pwa-notification__time {
        top: 25px
    }
}

.install-pwa-notification__close {
    cursor: pointer;
    height: 15px;
    position: absolute;
    width: 15px
}

[dir=ltr] .install-pwa-notification__close {
    right: 10px
}

[dir=rtl] .install-pwa-notification__close {
    left: 10px
}

.install-pwa-notification__close path {
    fill: rgba(0, 0, 0, .4)
}

@media only screen and (max-width:767px) {
    .install-pwa-notification__close {
        display: none
    }
}

.notify-container {
    align-items: center;
    display: flex;
    font-family: Roboto, sans-serif;
    height: 100vh;
    justify-content: center;
    position: fixed;
    width: 100vw;
    z-index: 200
}

.notify-container:nth-child(n+2) {
    display: none
}

.notify-container__background {
    background-color: #000;
    height: 100%;
    opacity: .4;
    position: absolute;
    top: 0;
    width: 100%
}

[dir=ltr] .notify-container__background {
    left: 0
}

[dir=rtl] .notify-container__background {
    right: 0
}

.notify-container__content {
    align-items: center;
    background-image: url(/static/media/bg.d7ae2b5c080b015ebe49.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    border-radius: 24px;
    box-shadow: 0 0 45px -4px hsla(0, 0%, 100%, .45);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 500px;
    overflow: hidden;
    position: relative;
    z-index: 202
}

[dir=ltr] .notify-container__content {
    background-position: 100%
}

[dir=rtl] .notify-container__content {
    background-position: 0
}

@media only screen and (max-width:767px) {
    .notify-container__content {
        height: 100%;
        margin: 0 8px;
        max-height: 585px;
        max-width: 340px;
        min-width: auto;
        width: 100%
    }
}

.notify-container__header {
    align-items: center;
    background: #000;
    display: flex;
    height: 80px;
    justify-content: center;
    margin-bottom: 32px;
    width: 100%
}

.notify-container__header-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase
}

@media only screen and (max-width:767px) {
    .notify-container__header-text {
        font-size: 22px
    }
}

.notify-container__logo {
    height: auto;
    width: 314px
}

.notify-container__logo-wrapper {
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    height: 120px;
    margin-top: 32px;
    padding: 24px
}

.notify-container__info,
.notify-container__logo-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%
}

.notify-container__info {
    flex-direction: column;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 55px;
    text-align: center
}

.notify-container__info-text {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: .8
}

.notify-container__info-amount {
    color: #fde732;
    font-size: 96px;
    font-weight: 700
}

.notify-container__info-currency {
    color: #fff;
    font-size: 24px;
    font-weight: 700
}

.notify-container__amount-container {
    align-items: center;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 155px;
    justify-content: center;
    min-width: 290px;
    position: relative;
    width: auto
}

[dir=ltr] .notify-container__amount-container {
    background: linear-gradient(132.23deg, #000 -14.325%, rgba(0, 0, 0, .75) 123.729%)
}

[dir=rtl] .notify-container__amount-container {
    background: linear-gradient(-132.23deg, #000 -14.325%, rgba(0, 0, 0, .75) 123.729%)
}

.notify-container__button-wrapper {
    height: 98px;
    padding: 24px 24px 0;
    width: 100%
}

.notify-container__button-wrapper button {
    background: #fff !important;
    border-radius: 16px;
    box-shadow: 0 0 50px 0 hsla(0, 0%, 100%, .3);
    color: #d6c32a !important;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase
}

.page-loading {
    height: calc(100vh - 110px);
    position: relative
}

@media only screen and (max-width:767px) {
    .page-loading {
        height: calc(var(--vh) - 109px)
    }

    .page-loading_auth {
        height: calc(var(--vh) - 58px)
    }
}

.user-info-mobile {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-family: Roboto, sans-serif;
    gap: 12px;
    justify-content: center;
    width: 100%
}

.user-info-mobile__username {
    font-size: 16px;
    font-weight: 700
}

.user-info-mobile__balance {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 100%
}

.user-info-mobile__balance-item {
    align-items: center;
    display: flex;
    gap: 9px;
    justify-content: center
}

.user-info-mobile__balance-label {
    color: #a8a8a8;
    font-size: 14px;
    font-weight: 500
}

.user-info-mobile__balance-value {
    font-size: 14px;
    font-weight: 700
}

.user-info-mobile__circle {
    background: #7e7e7e;
    border-radius: 50%;
    height: 4px;
    margin: 0 12px;
    width: 4px
}

.profile-mobile {
    color: #fff;
    display: flex;
    flex-direction: column
}

.profile-mobile__header {
    align-items: center;
    background: #4e4e4e;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin: 0 6px 16px;
    padding: 12px
}

.profile-mobile__header-sub {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 100%
}

[dir=ltr] .profile-mobile__wheel {
    margin-right: 32px
}

[dir=rtl] .profile-mobile__wheel {
    margin-left: 32px
}

.profile-mobile__content {
    width: 100%
}

.profile-mobile__category-header,
.profile-mobile__category-header-logout {
    background: #4f4f4f;
    border-bottom: .0625rem solid #2f3031;
    font-weight: 700;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 .625rem;
    position: relative;
    text-transform: uppercase;
    width: 100%
}

.profile-mobile__category-header-logout {
    cursor: pointer
}

.profile-mobile__category-items {
    display: flex;
    flex-direction: column;
    text-transform: uppercase
}

.profile-mobile__category-item {
    border-bottom: .0625rem solid #4f4f4f;
    color: #fff;
    display: block;
    font-size: .8125rem;
    font-weight: 400;
    height: 2.5rem;
    letter-spacing: .0313rem;
    line-height: 2.5rem;
    padding: 0 .625rem
}

.profile-mobile__category-item:last-child {
    border: none
}

.profile-mobile__category-icon,
.profile-mobile__category-logout-icon {
    height: 1.5rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-59%);
    transform: translateY(-59%);
    width: 1.5rem
}

[dir=ltr] .profile-mobile__category-icon,
[dir=ltr] .profile-mobile__category-logout-icon {
    right: .9375rem
}

[dir=rtl] .profile-mobile__category-icon,
[dir=rtl] .profile-mobile__category-logout-icon {
    left: .9375rem
}

.profile-mobile__category-icon * {
    fill: #fff
}

.profile-settings-menu {
    background: #2f3031;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: auto;
    overflow: auto;
    position: fixed;
    top: 58px;
    touch-action: none;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    width: 100vw;
    will-change: transform;
    z-index: 100
}

[dir=ltr] .profile-settings-menu {
    left: auto !important;
    right: -100%
}

[dir=rtl] .profile-settings-menu {
    left: -100%;
    right: auto !important
}

[dir=ltr] .profile-settings-menu_open {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

[dir=rtl] .profile-settings-menu_open {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.profile-settings-menu__header {
    align-items: center;
    display: flex;
    padding: 10px
}

.profile-settings-menu__header-close {
    height: 20px;
    width: 20px
}

.profile-settings-menu__header-close * {
    fill: #fff
}

.profile-settings-menu__button-wrapper,
.profile-settings-menu__content-item {
    margin-bottom: .625rem
}

.profile-settings-menu__button-wrapper {
    align-items: center;
    background: #000;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    height: 2.5rem;
    justify-content: center;
    margin-left: .625rem;
    margin-right: .625rem;
    text-transform: uppercase;
    width: calc(100% - 1.25rem)
}

.profile-settings-menu__content {
    padding: 1rem 0;
    width: 100vw
}

.profile-settings-menu__title {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem
}

.profile-settings-menu__cross {
    display: block;
    width: .875rem
}

.profile-settings-menu__item {
    align-items: center;
    background: #47475f;
    border-radius: .3125rem;
    box-sizing: border-box;
    display: flex;
    height: 2.5rem;
    width: 100%
}

[dir=ltr] .profile-settings-menu__item {
    padding: 0 1.25rem 0 .8125rem
}

[dir=rtl] .profile-settings-menu__item {
    padding: 0 .8125rem 0 1.25rem
}

.profile-settings-menu__item:not(:last-of-type) {
    margin-bottom: .75rem
}

.profile-settings-menu__item-symbol {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700
}

[dir=ltr] .profile-settings-menu__item-symbol {
    margin-right: .5625rem
}

[dir=rtl] .profile-settings-menu__item-symbol {
    margin-left: .5625rem
}

.profile-settings-menu__item-value {
    color: #757575;
    font-size: .875rem
}

.profile-settings-menu__item_active .profile-settings-menu__item-value {
    color: #595979
}

.profile-settings-menu__item-circle {
    border: .3125rem solid #fff;
    border-radius: 1rem;
    box-sizing: border-box;
    height: 1rem;
    transition: all .3s ease-in;
    width: 1rem
}

[dir=ltr] .profile-settings-menu__item-circle {
    margin-left: auto
}

[dir=rtl] .profile-settings-menu__item-circle {
    margin-right: auto
}

.profile-settings-menu__item_active .profile-settings-menu__item-circle {
    border-color: #595979
}

.side-menu {
    background: #2f3031;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-top: auto;
    overflow-x: auto;
    padding-bottom: .1875rem;
    position: fixed;
    top: 58px;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    width: 100%;
    will-change: transform;
    z-index: 1991
}

[dir=ltr] .side-menu {
    left: -100%;
    right: auto !important
}

[dir=rtl] .side-menu {
    left: auto !important;
    right: -100%
}

@media only screen and (min-width:768px) {
    .side-menu {
        display: none !important
    }
}

.side-menu_open {
    touch-action: none
}

[dir=ltr] .side-menu_open {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

[dir=rtl] .side-menu_open {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.side-menu__items {
    grid-gap: 16px;
    color: #fff;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
    width: 100%
}

.side-menu__item {
    background: #424242;
    border-radius: 8px;
    display: flex;
    height: 80px;
    justify-content: space-between;
    padding: 12px;
    position: relative
}

.side-menu__item-text {
    align-self: flex-start;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400
}

.side-menu__item-icon {
    align-self: flex-end;
    height: 48px;
    width: 48px
}

.side-menu__item-new {
    background: #ffdf1b;
    border-radius: 2px;
    color: #000;
    padding: .1rem .4rem;
    position: absolute;
    top: -10px
}

[dir=ltr] .side-menu__item-new {
    right: -10px
}

[dir=rtl] .side-menu__item-new {
    left: -10px
}

.side-menu__item_big {
    grid-column-end: 3;
    grid-column-start: 1
}

.app {
    height: 100%;
    width: 100%
}

.app__container {
    align-items: stretch;
    background-color: #111;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    font-weight: 400;
    justify-content: flex-start;
    max-width: 100%;
    min-height: var(--vh);
    position: relative;
    width: 100%
}

.app__container_isSportMatch {
    background-color: transparent
}

.app__content_container {
    margin: 0 auto;
    max-width: min(100%, 1560px)
}

.app__main {
    background: #111;
    display: flex;
    position: relative;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    width: 100%;
    z-index: 2
}

@media only screen and (max-width:767px) {
    .app__main {
        padding-top: 109px
    }

    .app__main_isAuth {
        padding-top: 58px
    }

    .app__main-content {
        min-height: calc(var(--vh) - 109px) !important
    }

    .app__main_isAuth .app__main-content {
        min-height: calc(var(--vh) - 58px) !important
    }
}

.app__main-content,
.app__main-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%
}

.app__main-content {
    flex: 1 0 auto;
    min-height: calc(var(--vh) - 130px);
    padding: 0
}

.error-boundary {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    height: 100%;
    justify-content: center;
    width: 100%
}

.error-boundary__info {
    color: #f5f5f5;
    margin-bottom: 10px
}

.error-boundary__button {
    border-radius: 5px;
    font-size: 25px
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0, 0%, 100%, .7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    box-sizing: border-box;
    color: #fff;
    padding: 4px;
    position: fixed;
    -webkit-transform: translate3d(0, 0, 9999 px);
    -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
    width: 320px;
    width: var(--toastify-toast-width);
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
    top: 1em
}

[dir=ltr] .Toastify__toast-container--top-left {
    left: 1em
}

[dir=rtl] .Toastify__toast-container--top-left {
    right: 1em
}

.Toastify__toast-container--top-center {
    top: 1em
}

[dir=ltr] .Toastify__toast-container--top-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

[dir=rtl] .Toastify__toast-container--top-center {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%)
}

.Toastify__toast-container--top-right {
    top: 1em
}

[dir=ltr] .Toastify__toast-container--top-right {
    right: 1em
}

[dir=rtl] .Toastify__toast-container--top-right {
    left: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em
}

[dir=ltr] .Toastify__toast-container--bottom-left {
    left: 1em
}

[dir=rtl] .Toastify__toast-container--bottom-left {
    right: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em
}

[dir=ltr] .Toastify__toast-container--bottom-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

[dir=rtl] .Toastify__toast-container--bottom-center {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em
}

[dir=ltr] .Toastify__toast-container--bottom-right {
    right: 1em
}

[dir=rtl] .Toastify__toast-container--bottom-right {
    left: 1em
}

@media only screen and (max-width:480px) {
    .Toastify__toast-container {
        margin: 0;
        padding: 0;
        width: 100vw
    }

    [dir=ltr] .Toastify__toast-container {
        left: 0
    }

    [dir=rtl] .Toastify__toast-container {
        right: 0
    }

    .Toastify__toast-container--top-center,
    .Toastify__toast-container--top-left,
    .Toastify__toast-container--top-right {
        top: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,
    .Toastify__toast-container--bottom-left,
    .Toastify__toast-container--bottom-right {
        bottom: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    [dir=ltr] .Toastify__toast-container--rtl {
        left: auto;
        right: 0
    }

    [dir=rtl] .Toastify__toast-container--rtl {
        left: 0;
        right: auto
    }
}

.Toastify__toast {
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    font-family: sans-serif;
    font-family: var(--toastify-font-family);
    justify-content: space-between;
    margin-bottom: 1rem;
    max-height: 800px;
    max-height: var(--toastify-toast-max-height);
    min-height: 64px;
    min-height: var(--toastify-toast-min-height);
    overflow: hidden;
    padding: 8px;
    position: relative
}

[dir=ltr] .Toastify__toast {
    direction: ltr
}

[dir=ltr] .Toastify__toast--rtl,
[dir=rtl] .Toastify__toast {
    direction: rtl
}

[dir=rtl] .Toastify__toast--rtl {
    direction: ltr
}

.Toastify__toast-body {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    margin: auto 0;
    padding: 6px
}

.Toastify__toast-body>div:last-child {
    flex: 1 1
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    display: flex;
    flex-shrink: 0;
    margin-inline-end: 10px;
    width: 20px
}

.Toastify--animate {
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.Toastify--animate-icon {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@media only screen and (max-width:480px) {
    .Toastify__toast {
        border-radius: 0;
        margin-bottom: 0
    }
}

.Toastify__toast-theme--dark {
    background: #121212;
    background: var(--toastify-color-dark);
    color: #fff;
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
    background: #fff;
    background: var(--toastify-color-light);
    color: #757575;
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    background: #3498db;
    background: var(--toastify-color-info);
    color: #fff;
    color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: #07bc0c;
    background: var(--toastify-color-success);
    color: #fff;
    color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    background: #f1c40f;
    background: var(--toastify-color-warning);
    color: #fff;
    color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: #e74c3c;
    background: var(--toastify-color-error);
    color: #fff;
    color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
    background: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: #bb86fc;
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: #3498db;
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: #07bc0c;
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: #f1c40f;
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: #e74c3c;
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: hsla(0, 0%, 100%, .7);
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    outline: none;
    padding: 0;
    transition: .3s ease
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
    opacity: 1
}

@-webkit-keyframes Toastify__trackProgress {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    to {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }
}

@keyframes Toastify__trackProgress {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    to {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    bottom: 0;
    height: 5px;
    opacity: .7;
    position: absolute;
    width: 100%;
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

[dir=ltr] .Toastify__progress-bar {
    left: 0;
    -webkit-transform-origin: left;
    transform-origin: left
}

[dir=rtl] .Toastify__progress-bar {
    right: 0;
    -webkit-transform-origin: right;
    transform-origin: right
}

.Toastify__progress-bar--animated {
    -webkit-animation: Toastify__trackProgress linear 1 forwards;
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

[dir=ltr] .Toastify__progress-bar--rtl {
    left: auto;
    right: 0;
    -webkit-transform-origin: right;
    transform-origin: right
}

[dir=rtl] .Toastify__progress-bar--rtl {
    left: 0;
    right: auto;
    -webkit-transform-origin: left;
    transform-origin: left
}

.Toastify__spinner {
    -webkit-animation: Toastify__spin .65s linear infinite;
    animation: Toastify__spin .65s linear infinite;
    border: 2px solid #e0e0e0;
    border-color: var(--toastify-spinner-color-empty-area);
    border-radius: 100%;
    box-sizing: border-box;
    height: 20px;
    width: 20px
}

[dir=ltr] .Toastify__spinner {
    border-right-color: #616161;
    border-right-color: var(--toastify-spinner-color)
}

[dir=rtl] .Toastify__spinner {
    border-left-color: #616161;
    border-left-color: var(--toastify-spinner-color)
}

@-webkit-keyframes Toastify__bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes Toastify__bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes Toastify__bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes Toastify__bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes Toastify__bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes Toastify__bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes Toastify__bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes Toastify__bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes Toastify__bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
    -webkit-animation-name: Toastify__bounceInLeft;
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
    -webkit-animation-name: Toastify__bounceInRight;
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    -webkit-animation-name: Toastify__bounceInDown;
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    -webkit-animation-name: Toastify__bounceInUp;
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
    -webkit-animation-name: Toastify__bounceOutLeft;
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
    -webkit-animation-name: Toastify__bounceOutRight;
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    -webkit-animation-name: Toastify__bounceOutUp;
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    -webkit-animation-name: Toastify__bounceOutDown;
    animation-name: Toastify__bounceOutDown
}

@-webkit-keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@-webkit-keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    -webkit-animation-name: Toastify__zoomIn;
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    -webkit-animation-name: Toastify__zoomOut;
    animation-name: Toastify__zoomOut
}

@-webkit-keyframes Toastify__flipIn {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipIn {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes Toastify__flipOut {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }
}

@keyframes Toastify__flipOut {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }
}

.Toastify__flip-enter {
    -webkit-animation-name: Toastify__flipIn;
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    -webkit-animation-name: Toastify__flipOut;
    animation-name: Toastify__flipOut
}

@-webkit-keyframes Toastify__slideInRight {
    0% {
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInRight {
    0% {
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes Toastify__slideInLeft {
    0% {
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes Toastify__slideInUp {
    0% {
        -webkit-transform: translate3d(0, 110%, 0);
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        -webkit-transform: translate3d(0, 110%, 0);
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes Toastify__slideInDown {
    0% {
        -webkit-transform: translate3d(0, -110%, 0);
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        -webkit-transform: translate3d(0, -110%, 0);
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes Toastify__slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(110%, 0, 0);
        transform: translate3d(110%, 0, 0);
        visibility: hidden
    }
}

@-webkit-keyframes Toastify__slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-110%, 0, 0);
        transform: translate3d(-110%, 0, 0);
        visibility: hidden
    }
}

@-webkit-keyframes Toastify__slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 500px, 0);
        transform: translate3d(0, 500px, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 500px, 0);
        transform: translate3d(0, 500px, 0);
        visibility: hidden
    }
}

@-webkit-keyframes Toastify__slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -500px, 0);
        transform: translate3d(0, -500px, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -500px, 0);
        transform: translate3d(0, -500px, 0);
        visibility: hidden
    }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
    -webkit-animation-name: Toastify__slideInLeft;
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
    -webkit-animation-name: Toastify__slideInRight;
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    -webkit-animation-name: Toastify__slideInDown;
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    -webkit-animation-name: Toastify__slideInUp;
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
    -webkit-animation-name: Toastify__slideOutLeft;
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
    -webkit-animation-name: Toastify__slideOutRight;
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    -webkit-animation-name: Toastify__slideOutUp;
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    -webkit-animation-name: Toastify__slideOutDown;
    animation-name: Toastify__slideOutDown
}

@-webkit-keyframes Toastify__spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes Toastify__spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

#root,
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
}

@media only screen and (max-width:767px) {

    #root,
    body,
    html {
        -webkit-overflow-scrolling: touch;
        font-family: Roboto Condensed, sans-serif;
        height: 100%
    }
}

@media only screen and (min-width:768px) {

    #root,
    body,
    html {
        font-family: Open Sans, sans-serif;
        font-weight: 500;
        height: 100%
    }
}

html {
    color: #fff;
    font-size: 16px;
    -webkit-user-select: none;
    user-select: none
}

@media only screen and (max-width:767px) {
    html {
        background: #000000;
        overflow-x: hidden
    }
}

@media only screen and (min-width:768px) {
    html {
        background: #111;
        color: #fff;
        overflow-y: auto
    }
}

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

@media only screen and (max-width:767px) {

    a,
    button,
    div {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
    }
}

button {
    border: none;
    outline: none
}

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

td,
th {
    padding: 0
}

@media only screen and (max-width:2600px) {
    html {
        font-size: 19px
    }
}

@media only screen and (max-width:2300px) {
    html {
        font-size: 17.5px
    }
}

@media only screen and (max-width:1920px) {
    html {
        font-size: 16px
    }
}

@media only screen and (max-width:1750px) {
    html {
        font-size: 14.5px
    }
}

@media only screen and (max-width:1600px) {
    html {
        font-size: 13px
    }
}

@media only screen and (max-width:1440px) {
    html {
        font-size: 14px
    }
}

@media only screen and (max-width:1366px) {
    html {
        font-size: 14px
    }
}

@media only screen and (max-width:768px) {
    html {
        font-size: 16px
    }
}

.html-mac ::-webkit-scrollbar {
    display: none
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    -webkit-font-feature-settings: inherit;
    font-feature-settings: inherit;
    border: 0;
    box-sizing: border-box;
    font-stretch: inherit;
    font-style: inherit;
    font-variant: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    vertical-align: initial
}

div::-webkit-scrollbar,
header::-webkit-scrollbar,
li::-webkit-scrollbar {
    -ms-overflow-style: none;
    display: none;
    scrollbar-width: none
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
ul {
    color: inherit;
    list-style: none;
    text-decoration: none
}

::-webkit-scrollbar {
    height: .275rem;
    width: .275rem
}

::-webkit-scrollbar-thumb {
    background: #2a2f3d
}