@keyframes rotation-loader {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spinTo1 {
    0% {
        -webkit-transform: rotate(-44deg);
        transform: rotate(-44deg)
    }

    to {
        transform: rotate(1080deg)
    }
}

@-webkit-keyframes spinTo2 {
    0% {
        transform: rotate(-4deg)
    }

    to {
        transform: rotate(1396deg)
    }
}

@-webkit-keyframes spinTo3 {
    0% {
        transform: rotate(-4deg)
    }

    to {
        transform: rotate(1351deg)
    }
}

@-webkit-keyframes spinTo4 {
    0% {
        transform: rotate(-4deg)
    }

    to {
        transform: rotate(1305deg)
    }
}

@-webkit-keyframes spinTo5 {
    0% {
        transform: rotate(-4deg)
    }

    to {
        transform: rotate(1261deg)
    }
}

@-webkit-keyframes spinTo6 {
    0% {
        transform: rotate(-4deg)
    }

    to {
        transform: rotate(1217deg)
    }
}

@-webkit-keyframes spinTo7 {
    0% {
        transform: rotate(-4deg)
    }

    to {
        transform: rotate(1531deg)
    }
}

@-webkit-keyframes spinTo8 {
    0% {
        transform: rotate(-4deg)
    }

    to {
        transform: rotate(1485deg)
    }
}

@-webkit-keyframes spinner-win {

    0%,
    to {
        transform: rotate(1080deg)
    }

    50% {
        transform: rotate(1085deg)
    }
}

@-webkit-keyframes rotateLogo {

    0%,
    to {
        transform: rotate(2deg)
    }

    50% {
        transform: rotate(-2deg)
    }
}

@-webkit-keyframes pulseButton {

    0%,
    to {
        transform: scale(.95)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes showSparkles {

    0%,
    66%,
    to {
        opacity: 0
    }

    33% {
        opacity: 1
    }
}

@keyframes showFlare {

    0%,
    to {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

@-webkit-keyframes rotateImages {
    0% {
        transform: rotate(0deg) scale(.5)
    }

    12.5% {
        transform: rotate(45deg) scale(1)
    }

    25% {
        transform: rotate(90deg) scale(1)
    }

    37.5% {
        transform: rotate(135deg) scale(1)
    }

    50% {
        transform: rotate(180deg) scale(1)
    }

    62.5% {
        transform: rotate(225deg) scale(1)
    }

    75% {
        transform: rotate(270deg) scale(1)
    }

    87.5% {
        transform: rotate(315deg) scale(1)
    }

    to {
        transform: rotate(360deg) scale(.5)
    }
}

@-webkit-keyframes rotateImage {
    0% {
        transform: rotate(0deg) scaleY(-1)
    }

    12.5% {
        transform: rotate(-45deg) scaleY(-1)
    }

    25% {
        transform: rotate(-90deg) scaleY(-1)
    }

    37.5% {
        transform: rotate(-135deg) scaleY(-1)
    }

    50% {
        transform: rotate(-180deg) scaleY(-1)
    }

    62.5% {
        transform: rotate(-225deg) scaleY(-1)
    }

    75% {
        transform: rotate(-270deg) scaleY(-1)
    }

    87.5% {
        transform: rotate(-315deg) scaleY(-1)
    }

    to {
        transform: rotate(-360deg) scaleY(-1)
    }
}

@-webkit-keyframes moveLeftRight {

    0%,
    to {
        transform: translate(0, 0)
    }

    25%,
    75% {
        transform: translate(calc(-100vw + 55em), calc(-50vh + 22.5em))
    }

    50% {
        transform: translate(0, calc(-100vh + 55em))
    }
}

@-webkit-keyframes scaleModalWin {

    0%,
    to {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

*,
::after,
::before {
    box-sizing: border-box
}

* {
    margin: 0;
    padding: 0
}

ol[role=list],
ul[role=list] {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

a {
    text-decoration: none !important
}

a:not([class]) {
    text-decoration-skip-ink: auto
}

canvas,
img,
picture,
svg,
video {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover
}

button,
input,
select,
textarea {
    font: inherit
}

@media (prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    ::after,
    ::before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
        transition: none
    }
}

body,
html {
    height: 100%;
    scroll-behavior: smooth
}

.hidden {
    display: none !important
}

.visible {
    display: flex !important
}

body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: min(4.5px + 5.5*(100vw - 375px)/1545, 10px);
    font-style: normal;
    font-size: 75%
}

.bottom__section-button span {
    height: auto
}

.bottom__section-button .button-loader {
    display: none
}

.bottom__section-button.is--link {
    display: flex;
    align-items: center;
    justify-content: center
}

.bottom__section-button.is--disabled {
    pointer-events: none
}

.bottom__section-button.is--disabled span {
    opacity: .2
}

.bottom__section-button.is--disabled .button-loader {
    display: flex
}

.button-loader {
    position: absolute;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.button-loader span {
    width: 30px !important;
    height: 30px !important;
    border: 4px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation-loader 1s linear infinite;
    opacity: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important
}

img {
    width: 100%
}

.wheel__spinner_win_1 {
    animation: 3s spinTo1 ease-in-out forwards !important
}

.wheel__spinner_win_2 {
    animation: 3s spinTo2 ease-in-out forwards
}

.wheel__spinner_win_3 {
    animation: 3s spinTo3 ease-in-out forwards
}

.wheel__spinner_win_4 {
    animation: 3s spinTo4 ease-in-out forwards
}

.wheel__spinner_win_5 {
    animation: 3s spinTo5 ease-in-out forwards
}

.wheel__spinner_win_6 {
    animation: 3s spinTo6 ease-in-out forwards
}

.wheel__spinner_win_7 {
    animation: 3s spinTo7 ease-in-out forwards
}

.wheel__spinner_win_8 {
    animation: 3s spinTo8 ease-in-out forwards
}

.wheel__texts-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 1em !important;
    padding-left: 2em !important
}

.wheel__texts-block p {
    transform: rotate(-7deg)
}

.wheel__texts-block p:only-child {
    transform: rotate(0deg)
}

.wheel__texts-block p+p {
    margin-top: 10px;
    transform: rotate(7deg)
}

.aanqdd,
.effects__block {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.aanqdd {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    mix-blend-mode: screen
}

.effects__block {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: fixed
}

.wheel__texts-1 {
    transform: rotate(-137deg);
    position: absolute;
    left: 11%;
    top: 23%
}

.wheel__texts-2,
.wheel__texts-3 {
    transform: rotate(-93deg);
    position: absolute;
    left: 32%;
    top: 14%
}

.wheel__texts-3 {
    transform: rotate(-45deg);
    left: 54%;
    top: 23%
}

.wheel__texts-4,
.wheel__texts-5 {
    transform: rotate(-2deg);
    position: absolute;
    left: 63%;
    top: 44%
}

.wheel__texts-5 {
    transform: rotate(43deg);
    left: 54%;
    top: 65%
}

.wheel__texts-6,
.wheel__texts-7 {
    transform: rotate(87deg);
    position: absolute;
    left: 33%;
    top: 74%
}

.wheel__texts-7 {
    transform: rotate(133deg);
    left: 11%;
    top: 66%
}

.aanqdf,
.wheel__texts-8 {
    transform: rotate(177deg);
    position: absolute;
    left: 2%;
    top: 45%
}

.aanqdf {
    left: 0;
    top: 0;
    transform: rotate(45deg);
    opacity: 0;
    width: 100%
}

.aanqdf.is--active {
    opacity: 1
}

.is--win-spinner {
    animation: 2s spinner-win ease-in-out infinite !important
}

body.is--winner .aanqcy {
    opacity: 0
}

html {
    background: #c848cc;
    font-size: min(4.5px + 5.5*(100vw - 375px)/1545, 10px)
}

@media (max-width:1023px) {
    body {
        font-size: 110%
    }
}

@media (max-width:420px) {
    body {
        font-size: 105%
    }
}

.aanqcs {
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-image: url(../assets/page-bg.webp)
}

@media (max-width:767px) {
    .aanqcs {
        background-image: url(../assets/page-bg-mobile.webp)
    }
}

.aanqcu {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 5em 0 7em;
    overflow: hidden
}

@media (max-width:767px) {
    .aanqcu {
        padding-bottom: 100px
    }
}

.aanqct {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column
}

@media (max-width:767px) {
    .aanqct {
        display: block
    }
}

.aanqcv {
    position: relative;
    z-index: 7;
    display: block;
    width: 100em;
    margin: 0 auto;
    animation: 2s rotateLogo ease-in-out infinite
}

@media (max-width:1023px) {
    .aanqcv {
        width: 70em
    }
}

.aanqcv img {
    display: block
}

.aanqdb {
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 7;
    width: 100%;
    object-fit: cover;
    max-width: 2050px;
    transform: translate(-50%, 33%) scale(.95)
}

@media (max-width:768px) {
    .aanqdb {
        transform: translate(-50%, 20%) scale(1.6)
    }
}

.scratch-container {
    position: relative;
    z-index: 10
}

@media (max-width:768px) {
    .scratch-container {
        z-index: 1
    }
}

.scratch-container .scratch-description {
    position: relative;
    padding: 0 45px;
    margin: .75em 0 1em !important;
    text-align: center;
    font-size: 7.6em;
    line-height: 1;
    text-transform: uppercase;
    color: #ffe22b;
    background: 0 0;
    text-shadow: 0 -3px 1px #d40400, -2px -2px 1px #d40400, -1px -2px 1px #d40400, 0 -2px 1px #d40400, 1px -2px 1px #d40400, 2px -2px 1px #d40400, -2px -1px 1px #d40400, -1px -1px 1px #d40400, 0 -1px 1px #d40400, 1px -1px 1px #d40400, 2px -1px 1px #d40400, -3px 0 1px #d40400, -2px 0 1px #d40400, -1px 0 1px #d40400, 0 0 1px #d40400, 1px 0 1px #d40400, 2px 0 1px #d40400, 3px 0 1px #d40400, -2px 1px 1px #d40400, -1px 1px 1px #d40400, 0 1px 1px #d40400, 1px 1px 1px #d40400, 2px 1px 1px #d40400, -2px 2px 1px #d40400, -1px 2px 1px #d40400, 0 2px 1px #d40400, 1px 2px 1px #d40400, 2px 2px 1px #d40400, 0 3px 1px #d40400;
    -webkit-font-smoothing: antialiased
}

@media (max-width:1024px) {
    .scratch-container .scratch-description {
        text-shadow: 0 -2px 1px #d40400, -1px -1px 1px #d40400, 0 -1px 1px #d40400, 1px -1px 1px #d40400, -2px 0 1px #d40400, -1px 0 1px #d40400, 0 0 1px #d40400, 1px 0 1px #d40400, 2px 0 1px #d40400, -1px 1px 1px #d40400, 0 1px 1px #d40400, 1px 1px 1px #d40400, 0 2px 1px #d40400;
        -webkit-font-smoothing: antialiased;
        font-size: 5.2em
    }
}

.scratch-container .scratch-cards__item {
    height: 50em;
    background: 0 0;
    text-align: center
}

.scratch-container .scratch-cards__item .sc__inner {
    z-index: 2
}

.scratch-container .scratch-cards__item .sc__canvas {
    scale: 1.02;
    z-index: 3
}

.scratch-container .scratch-cards__item::after {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 204, 1, .75) 0, rgba(255, 65, 1, .75) 100%);
    opacity: .7
}

@media (max-width:767px) {
    .scratch-container .scratch-cards__item {
        height: 33em
    }
}

.scratch-container .scratch-cards__explication {
    height: auto
}

.scratch-container .scratch-cards__explication::before {
    z-index: 4 !important
}

.scratch-container .scratch-cards__item .bonus-item {
    color: #ff7801 !important;
    text-shadow: 0 -3px 1px #fff, -2px -2px 1px #fff, -1px -2px 1px #fff, 0 -2px 1px #fff, 1px -2px 1px #fff, 2px -2px 1px #fff, -2px -1px 1px #fff, -1px -1px 1px #fff, 0 -1px 1px #fff, 1px -1px 1px #fff, 2px -1px 1px #fff, -3px 0 1px #fff, -2px 0 1px #fff, -1px 0 1px #fff, 0 0 1px #fff, 1px 0 1px #fff, 2px 0 1px #fff, 3px 0 1px #fff, -2px 1px 1px #fff, -1px 1px 1px #fff, 0 1px 1px #fff, 1px 1px 1px #fff, 2px 1px 1px #fff, -2px 2px 1px #fff, -1px 2px 1px #fff, 0 2px 1px #fff, 1px 2px 1px #fff, 2px 2px 1px #fff, 0 3px 1px #fff;
    -webkit-font-smoothing: antialiased
}

@media (max-width:1024px) {
    .scratch-container .scratch-cards__item .bonus-item {
        text-shadow: 0 -2px 1px #fff, -1px -1px 1px #fff, 0 -1px 1px #fff, 1px -1px 1px #fff, -2px 0 1px #fff, -1px 0 1px #fff, 0 0 1px #fff, 1px 0 1px #fff, 2px 0 1px #fff, -1px 1px 1px #fff, 0 1px 1px #fff, 1px 1px 1px #fff, 0 2px 1px #fff;
        -webkit-font-smoothing: antialiased
    }
}

.aanqcy {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 8;
    width: 100%;
    min-width: 1px;
    margin-top: 12em
}

@media (max-width:1023px) {
    .aanqcy {
        position: fixed;
        left: 0;
        bottom: 16em;
        margin-top: 0
    }
}

.bottom__section-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12.8em;
    min-width: 30px;
    background-color: transparent;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    background-image: url(../assets/button_middle.webp);
    outline: 0;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent
}

.bottom__section-button:after,
.bottom__section-button:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20em;
    background-size: contain;
    background-repeat: no-repeat
}

.bottom__section-button:before {
    left: calc(-20em + 1px);
    background-position: right center;
    background-image: url(../assets/button_left.webp)
}

.bottom__section-button:after {
    right: calc(-20em + 1px);
    background-position: left center;
    background-image: url(../assets/button_right.webp)
}

.bottom__section-button span {
    position: relative;
    z-index: 3;
    padding: 0 1.2em;
    margin-bottom: .1em;
    margin-left: -3em;
    margin-right: -3em;
    font-size: 6em;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

.bottom__section-button.pulse {
    animation: 2s pulseButton ease-in-out infinite
}

.aanqda {
    display: none
}

.bottom__section-button .button-loader span {
    padding: 0 !important
}

.aanqcw {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.aanqcx,
.aanqdc {
    display: block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: plus-lighter
}

.aanqcx {
    width: 150em;
    height: 150em;
    right: calc(50% - 75em);
    top: calc(50% - 75em);
    font-size: 140%
}

.aanqcx.is--1,
.aanqcx.is--2,
.aanqcx.is--3 {
    background-image: url(../assets/effect-sparkles-1.webp);
    animation: showSparkles 2s ease-in-out infinite
}

.aanqcx.is--2,
.aanqcx.is--3 {
    opacity: 0;
    background-image: url(../assets/effect-sparkles-2.webp);
    animation-delay: .66s
}

.aanqcx.is--3 {
    background-image: url(../assets/effect-sparkles-3.webp);
    animation-delay: 1.33s
}

.aanqdc {
    left: calc(50% - 87em);
    top: calc(50% - 85em);
    width: 170em;
    height: 170em;
    background-image: url(../assets/effect-flare-1.webp)
}

.aanqdc.is--1,
.aanqdi.is--7 img {
    font-size: 110%
}

.aanqdc.is--2 {
    opacity: 0;
    font-size: 130%;
    animation: showFlare 2s ease-in-out infinite
}

.aanqdg,
.aanqdh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.aanqdg {
    transform: rotate(-180deg)
}

.aanqdh {
    animation: rotateImages 4s linear infinite
}

.aanqdi,
.aanqdj {
    position: absolute;
    animation: rotateImage 4s linear infinite
}

.aanqdi img {
    width: 17.2em;
    font-size: 140%
}

.aanqdi.is--1,
.aanqdi.is--2 {
    top: calc(50% - 60em);
    left: calc(50% - 8.6em)
}

.aanqdi.is--2 {
    top: calc(50% + 41em)
}

.aanqdi.is--3 {
    top: calc(50% - 8.6em);
    right: calc(50% - 60em)
}

.aanqdi.is--4 {
    top: calc(50% - 42em);
    right: calc(50% - 49em)
}

.aanqdi.is--5 {
    top: calc(50% - 9.6em);
    left: calc(50% - 62em)
}

.aanqdi.is--6 {
    top: calc(50% + 27em);
    left: calc(50% - 46em)
}

.aanqdi.is--7 {
    top: calc(50% - 42em);
    left: calc(50% - 49em)
}

.aanqdi.is--8 {
    top: calc(50% + 27em);
    right: calc(50% - 46em)
}

.aanqdj {
    z-index: 1;
    width: 55em;
    height: 55em;
    bottom: 0;
    right: 0;
    animation: moveLeftRight 10s ease-in-out infinite
}

@media (max-width:1023px) {
    .aanqdj {
        display: none
    }
}

.modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    opacity: 0;
    overflow: hidden;
    visibility: hidden
}

.modal .aanqcw .aanqcx {
    z-index: 2
}

.modal__wrapper {
    position: relative;
    top: 10%
}

.modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100em;
    margin: 0 auto 5em
}

@media (max-width:767px) {
    .modal__content {
        font-size: 80%;
        margin: 10em auto 15em
    }
}

.modal__logo,
.modal__win {
    position: relative;
    z-index: 2;
    width: 60%;
    margin: 5em auto 7em;
    animation: scaleModalWin 4s ease-in-out infinite
}

.modal__logo {
    z-index: 7;
    display: block;
    width: 100em;
    margin: 0 auto;
    animation: 2s rotateLogo ease-in-out infinite
}

@media (max-width:1023px) {
    .modal__logo {
        width: 70em
    }
}

.modal__title {
    position: relative;
    z-index: 2;
    margin-top: -.3em;
    padding: 0 16px;
    font-size: 6.2em;
    text-align: center;
    text-transform: uppercase;
    color: #ffc400;
    text-shadow: 0 -3px 1px #8f0000, -2px -2px 1px #8f0000, -1px -2px 1px #8f0000, 0 -2px 1px #8f0000, 1px -2px 1px #8f0000, 2px -2px 1px #8f0000, -2px -1px 1px #8f0000, -1px -1px 1px #8f0000, 0 -1px 1px #8f0000, 1px -1px 1px #8f0000, 2px -1px 1px #8f0000, -3px 0 1px #8f0000, -2px 0 1px #8f0000, -1px 0 1px #8f0000, 0 0 1px #8f0000, 1px 0 1px #8f0000, 2px 0 1px #8f0000, 3px 0 1px #8f0000, -2px 1px 1px #8f0000, -1px 1px 1px #8f0000, 0 1px 1px #8f0000, 1px 1px 1px #8f0000, 2px 1px 1px #8f0000, -2px 2px 1px #8f0000, -1px 2px 1px #8f0000, 0 2px 1px #8f0000, 1px 2px 1px #8f0000, 2px 2px 1px #8f0000, 0 3px 1px #8f0000;
    -webkit-font-smoothing: antialiased
}

@media (max-width:768px) {
    .modal__title {
        text-shadow: 0 -2px 1px #8f0000, -1px -1px 1px #8f0000, 0 -1px 1px #8f0000, 1px -1px 1px #8f0000, -2px 0 1px #8f0000, -1px 0 1px #8f0000, 0 0 1px #8f0000, 1px 0 1px #8f0000, 2px 0 1px #8f0000, -1px 1px 1px #8f0000, 0 1px 1px #8f0000, 1px 1px 1px #8f0000, 0 2px 1px #8f0000;
        -webkit-font-smoothing: antialiased
    }
}

.modal__text {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    padding: 0 16px;
    font-size: 6.2em;
    text-align: center;
    text-transform: uppercase;
    color: #ff85ff;
    text-shadow: 0 -3px 1px #340e0e, -2px -2px 1px #340e0e, -1px -2px 1px #340e0e, 0 -2px 1px #340e0e, 1px -2px 1px #340e0e, 2px -2px 1px #340e0e, -2px -1px 1px #340e0e, -1px -1px 1px #340e0e, 0 -1px 1px #340e0e, 1px -1px 1px #340e0e, 2px -1px 1px #340e0e, -3px 0 1px #340e0e, -2px 0 1px #340e0e, -1px 0 1px #340e0e, 0 0 1px #340e0e, 1px 0 1px #340e0e, 2px 0 1px #340e0e, 3px 0 1px #340e0e, -2px 1px 1px #340e0e, -1px 1px 1px #340e0e, 0 1px 1px #340e0e, 1px 1px 1px #340e0e, 2px 1px 1px #340e0e, -2px 2px 1px #340e0e, -1px 2px 1px #340e0e, 0 2px 1px #340e0e, 1px 2px 1px #340e0e, 2px 2px 1px #340e0e, 0 3px 1px #340e0e;
    -webkit-font-smoothing: antialiased
}

@media (max-width:768px) {
    .modal__text {
        text-shadow: 0 -2px 1px #340e0e, -1px -1px 1px #340e0e, 0 -1px 1px #340e0e, 1px -1px 1px #340e0e, -2px 0 1px #340e0e, -1px 0 1px #340e0e, 0 0 1px #340e0e, 1px 0 1px #340e0e, 2px 0 1px #340e0e, -1px 1px 1px #340e0e, 0 1px 1px #340e0e, 1px 1px 1px #340e0e, 0 2px 1px #340e0e;
        -webkit-font-smoothing: antialiased;
        margin-top: 5px
    }
}

.modal.is--active {
    opacity: 1;
    visibility: visible
}

.modal.is--active .aanqcy {
    opacity: 1;
    z-index: 6;
    margin-top: 0;
    bottom: 0;
    position: relative
}

.modal.is--active .bottom__section-button {
    animation: 2s pulseButton ease-in-out infinite
}

.is--modal-open .aanqcv,
.is--modal-open .aanqcy,
.is--modal-open .aanqdg,
.is--modal-open .aanqdj,
.is--modal-open .aanqdk,
.is--modal-open .aanqdl {
    z-index: 0;
    opacity: 0
}

.is--modal-open .aanqdb,
.is--modal-open .scratch-container {
    display: none
}

.aanqdd {
    z-index: 999 !important
}

#bonus-inline {
    position: fixed
}

@media (max-width:768px) and (max-height:741px) {
    #bonus-inline {
        position: absolute;
        left: -200%;
        min-width: 350px;
        transition: left 1s ease-out
    }

    #bonus-inline img {
        transform: unset;
        top: -20px
    }
}

#bonus-inline.is--active {
    background: linear-gradient(to bottom, #ffc61c, #d80000)
}

@media (max-width:768px) and (max-height:741px) {
    #bonus-inline.is--active {
        right: unset;
        left: 50%;
        transform: translate(-50%, 0);
        bottom: 5px;
        transition: left 1s ease-out
    }
}

#bonus-inline.is--active p {
    background: linear-gradient(90deg, #e00, #e00);
    -webkit-background-clip: text
}

#bonus-inline.is--active svg path {
    stroke: #e00
}