@charset "UTF-8";

:root {
    --hystmodal-speed: .2s;
    --hystmodal-zindex: 70
}

.hystmodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 0px min-content 0px;
    justify-content: center;
    align-content: space-between;
    visibility: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.hystmodal::-webkit-scrollbar {
    display: none
}

.hystmodal:before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: #000;
    opacity: 0;
    pointer-events: none
}

.hystmodal--animated:before {
    transition: opacity var(--hystmodal-speed) ease
}

.hystmodal--active:before {
    opacity: .6
}

.hystmodal--moved,
.hystmodal--active {
    opacity: 1;
    pointer-events: none;
    visibility: visible
}

.hystmodal--active {
    pointer-events: auto
}

.hystmodal__wrap {
    display: block;
    min-width: 0;
    grid-row: 2 / 3
}

.hystmodal__window {
    min-width: 0;
    grid-row: 2 / 3;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
    background: #fff;
    width: 600px;
    max-width: 100%;
    overflow: visible;
    transform: scale(.95);
    opacity: 0;
    margin: 50px auto
}

.hystmodal__window--loading {
    min-height: 400px;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='105' height='105' viewBox='0 0 105 105' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E%3Ccircle cx='12.5' cy='12.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='0s' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='12.5' cy='52.5' r='12.5' fill-opacity='.5'%3E%3Canimate attributeName='fill-opacity' begin='100ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='52.5' cy='12.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='300ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='52.5' cy='52.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='600ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='92.5' cy='12.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='800ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='92.5' cy='52.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='400ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='12.5' cy='92.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='700ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='52.5' cy='92.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='500ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='92.5' cy='92.5' r='12.5'%3E%3Canimate attributeName='fill-opacity' begin='200ms' dur='1s' values='1;.2;1' calcMode='linear' repeatCount='indefinite' /%3E%3C/circle%3E%3C/svg%3E%0A");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 48px
}

.hystmodal--animated .hystmodal__window {
    transition: transform var(--hystmodal-speed) ease 0s, opacity var(--hystmodal-speed) ease 0s
}

.hystmodal--active .hystmodal__window {
    transform: none;
    opacity: 1
}

.hystmodal__close {
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 15px;
    display: block;
    width: 25px;
    height: 25px;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    border: none;
    font-size: 0;
    cursor: pointer;
    outline: none
}

.hystmodal__close--wh {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E")
}

.hystmodal__close:hover {
    opacity: .95
}

.hystmodal__close:focus {
    outline: 2px dotted rgba(0, 0, 0, .7);
    outline-offset: 2px
}

.hystmodal__close--wh:focus {
    outline: 2px dotted rgba(255, 255, 255, .7)
}

@media all and (max-width:767px) {
    .hystmodal__close {
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px
    }

    .hystmodal__window {
        margin-top: 0;
        margin-bottom: 0
    }
}

*,
*:after,
*:before {
    box-sizing: border-box
}

.container {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box
}

.container.relative {
    position: relative
}

.container.nowrap {
    flex-wrap: nowrap !important
}

.container.row {
    flex-direction: row
}

.container.col {
    flex-direction: column
}

.container.align.start {
    align-items: flex-start
}

.container.align.center {
    align-items: center
}

.container.align.baseline {
    align-items: baseline
}

.container.justify.center {
    justify-content: center
}

.container.justify.start {
    justify-content: start
}

.container.justify.end {
    justify-content: end
}

.container.fillw,
.fillw {
    width: 100%
}

.container.fillh {
    height: 100%
}

.container.sbetween {
    justify-content: space-between;
    gap: 0
}

.container.fillwh {
    width: 100%;
    height: 100%
}

.container.hugw {
    width: -moz-fit-content;
    width: fit-content
}

.container.hugh {
    height: -moz-fit-content;
    height: fit-content
}

.container.hughwh {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.fullscreen {
    width: 100svw;
    min-height: 100svh
}

.p5 {
    padding: 5px
}

.p10 {
    padding: 10px
}

.p15 {
    padding: 15px
}

.p20 {
    padding: 20px
}

.p25 {
    padding: 25px
}

.p30 {
    padding: 30px
}

.p35 {
    padding: 35px
}

.p40 {
    padding: 40px
}

.p45 {
    padding: 45px
}

.p50 {
    padding: 50px
}

.p55 {
    padding: 55px
}

.p60 {
    padding: 60px
}

.p65 {
    padding: 65px
}

.p70 {
    padding: 70px
}

.p75 {
    padding: 75px
}

.p80 {
    padding: 80px
}

.p85 {
    padding: 85px
}

.p90 {
    padding: 90px
}

.p95 {
    padding: 95px
}

.p100 {
    padding: 100px
}

.container.g1 {
    gap: 1px
}

.container.g2 {
    gap: 2px
}

.container.g3 {
    gap: 3px
}

.container.g4 {
    gap: 4px
}

.container.g5 {
    gap: 5px
}

.container.g10 {
    gap: 10px
}

.container.g15 {
    gap: 15px
}

.container.g20 {
    gap: 20px
}

.container.g25 {
    gap: 25px
}

.container.g30 {
    gap: 30px
}

.container.g35 {
    gap: 35px
}

.container.g40 {
    gap: 40px
}

.container.g45 {
    gap: 45px
}

.container.g50 {
    gap: 50px
}

.container.g55 {
    gap: 55px
}

.container.g60 {
    gap: 60px
}

.container.g65 {
    gap: 65px
}

.container.g70 {
    gap: 70px
}

.container.g75 {
    gap: 75px
}

.container.g80 {
    gap: 80px
}

.container.g85 {
    gap: 85px
}

.container.g90 {
    gap: 90px
}

.container.g95 {
    gap: 95px
}

.container.g100 {
    gap: 100px
}

.container.g150 {
    gap: 150px
}

.w5p {
    width: 5%
}

.w10p {
    width: 10%
}

.w15p {
    width: 15%
}

.w20p {
    width: 20%
}

.w25p {
    width: 25%
}

.w30p {
    width: 30%
}

.w35p {
    width: 35%
}

.w40p {
    width: 40%
}

.w45p {
    width: 45%
}

.w50p {
    width: 50%
}

.w55p {
    width: 55%
}

.w60p {
    width: 60%
}

.w65p {
    width: 65%
}

.w70p {
    width: 70%
}

.w75p {
    width: 75%
}

.w80p {
    width: 80%
}

.w85p {
    width: 85%
}

.w90p {
    width: 90%
}

.w95p {
    width: 95%
}

.w100p {
    width: 100%
}

.w5vw {
    width: 5vw
}

.w10vw {
    width: 10vw
}

.w15vw {
    width: 15vw
}

.w20vw {
    width: 20vw
}

.w25vw {
    width: 25vw
}

.w30vw {
    width: 30vw
}

.w35vw {
    width: 35vw
}

.w40vw {
    width: 40vw
}

.w45vw {
    width: 45vw
}

.w50vw {
    width: 50vw
}

.w55vw {
    width: 55vw
}

.w60vw {
    width: 60vw
}

.w65vw {
    width: 65vw
}

.w70vw {
    width: 70vw
}

.w75vw {
    width: 75vw
}

.w80vw {
    width: 80vw
}

.w85vw {
    width: 85vw
}

.w90vw {
    width: 90vw
}

.w95vw {
    width: 95vw
}

.w100vw {
    width: 100vw
}

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 {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

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

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    outline: none
}

.animate.fast {
    transition: all ease-out .2s
}

.animate.mid {
    transition: all ease-out .4s
}

.animate.slow {
    transition: all ease-out .6s
}

.animate.fast.include * {
    transition: all ease-out .2s
}

.animate.mid.include * {
    transition: all ease-out .4s
}

.animate.slow.include * {
    transition: all ease-out .6s
}

.center.ver {
    top: 50%;
    transform: translateY(50%)
}

.center.hor {
    left: 50%;
    transform: translate(50%)
}

.fill.ws {
    width: 100%
}

.fill.hs {
    height: 100%
}

.fill.child.w>* {
    width: 100%
}

.fill.child.h>* {
    height: 100%
}

.scrl-hide::-webkit-scrollbar {
    display: none
}

:root {
    --font-family: IBM Plex Sans;
    --font-family-other: IBM Plex Sans;
    --font-link: "https://fonts.googleapis.com/css?family=IBM+Plex+Sans:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic";
    --main-color: #eee;
    --darker-color: #bbb;
    --background: #080808;
    --headings: #fff;
    --texts: #eee;
    --shadow-color: rgba(255, 0, 0, .5)
}

body {
    min-height: 100svh;
    max-height: 100svh;
    padding: 0;
    margin: 0
}

.wheelYWP * {
    box-sizing: border-box !important;
    height: auto
}

.wheelYWP h1,
.wheelYWP h2,
.wheelYWP h3,
.wheelYWP h4,
.wheelYWP h5,
.wheelYWP h6 {
    font-family: var(--font-family) !important;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    font-weight: 900
}

.wheelYWP p,
.wheelYWP span,
.wheelYWP button,
.wheelYWP li,
.wheelYWP ul,
.wheelYWP a {
    font-family: var(--font-family-other) !important;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.spin_container {
    --size: clamp(250px, 85vmin, 512px);
    --lg-hs: 0 3%;
    --lg-stop: 50%;
    --lg: linear-gradient(hsl(var(--lg-hs) 0%) 0 var(--lg-stop), hsl(var(--lg-hs) 20%) var(--lg-stop) 100%);
    position: relative;
    grid-gap: calc(var(--size) / 20);
    align-items: center;
    grid-template-areas: "spinner""trigger";
    font-size: calc(var(--size) / 21)
}

.deal-wheel {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto
}

.deal-wheel>* {
    grid-area: spinner
}

.deal-wheel .btn-spin {
    grid-area: trigger;
    justify-self: center
}

.spinner {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-areas: "spinner";
    width: var(--size);
    height: var(--size);
    transform: rotate(calc(var(--rotate, 25) * 1deg));
    border-radius: 50%;
    border: 8px solid #fff;
    padding: 0;
    margin: 0;
    box-shadow: 6px -1px 100px 49px var(--shadow-color)
}

.spinner * {
    grid-area: spinner
}

.prize {
    display: flex;
    align-items: center;
    padding: 0 calc(var(--size) / 6) 0 calc(var(--size) / 20);
    width: 50%;
    height: 50%;
    transform-origin: center right;
    transform: rotate(var(--rotate));
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.btn-spin {
    color: #fff;
    background: black;
    border: none;
    font-size: inherit;
    padding: .9rem 2rem 1rem;
    border-radius: .5rem;
    cursor: pointer
}

.btn-spin:disabled {
    cursor: progress;
    opacity: .25
}

.is-spinning .spinner {
    transition: transform 8s cubic-bezier(.1, -.01, 0, 1)
}

.prize.selected .text {
    color: #fff;
    animation: selected .8s ease
}

@keyframes selected {
    25% {
        transform: scale(1.25);
        -webkit-text-shadow: 1vmin 1vmin 0 hsla(0, 0%, 0%, .1);
        text-shadow: 1vmin 1vmin 0 hsla(0, 0%, 0%, .1)
    }

    40% {
        transform: scale(.92);
        -webkit-text-shadow: 0 0 0 hsla(0, 0%, 0%, .2);
        text-shadow: 0 0 0 hsla(0, 0%, 0%, .2)
    }

    60% {
        transform: scale(1.02);
        -webkit-text-shadow: .5vmin .5vmin 0 hsla(0, 0%, 0%, .1);
        text-shadow: .5vmin .5vmin 0 hsla(0, 0%, 0%, .1)
    }

    75% {
        transform: scale(1)
    }

    85% {
        transform: scale(1)
    }
}

.text {
    transform: rotate(180deg);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    width: 100%;
    color: #fff
}

.slide_left {
    display: flex;
    align-items: center
}

.ticker1 {
    padding-left: 17px;
    position: relative
}

.ticker1 img {
    position: relative;
    max-width: 32.1px
}

#promo {
    border: none;
    text-align: center;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 2px;
    color: #191919
}

.slide_right {
    color: #fff;
    max-width: 350px;
    min-width: 350px;
    position: relative
}

#while_content {
    position: fixed;
    top: 200%;
    width: 100%;
    height: 100vh;
    display: grid;
    align-items: center;
    background: var(--background);
    z-index: 1;
    left: 0px
}

.slide_right_tit {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 44px;
    color: var(--headings);
    margin: 0;
    padding: 0;
    letter-spacing: .02em;
    text-transform: uppercase
}

.slide_right_text {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--texts);
    opacity: .7;
    margin: 0;
    padding: 16px 0 32px;
    word-wrap: break-word
}

.numb_content {
    width: 100%;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden
}

input:-internal-autofill-selected {
    background: transparent !important
}

.numb_content img {
    max-width: 16px;
    max-height: 16px;
    margin-left: 11px;
    margin-right: 11px
}

.numb_content span {
    padding-right: 10px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--darker-color)
}

#phone_4::-moz-placeholder {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--texts);
    opacity: .5
}

#phone_4::placeholder {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--texts);
    opacity: .5
}

#phone_4 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    color: var(--texts)
}

.tel_while {
    padding: 16px 0;
    border: none;
    color: var(--texts);
    background: none
}

#while_content textarea:focus,
#while_content input:focus {
    outline: none
}

.send {
    width: 100%;
    height: 49px;
    background: #314cb6;
    border-radius: 8px;
    cursor: not-allowed;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    border: none;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.send:hover {
    opacity: .7
}

#error_text {
    color: red;
    display: none;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 8px;
    line-height: 9px
}

#forchekimg {
    cursor: pointer;
    border-radius: 4px
}

.labelcheck {
    cursor: pointer;
    display: flex;
    padding-right: 6px
}

.checkbox_cont {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 28px 0
}

.checkbox_cont span {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--texts);
    padding-right: 6px
}

.checkbox_cont a {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #7d93eb
}

.clos_modal {
    position: absolute;
    right: 41px;
    top: 41px;
    cursor: pointer;
    height: 20px;
    width: 20px
}

#close_window:hover {
    opacity: .8
}

#modal_full_show {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: contain
}

.show_modal {
    animation: spin 4s linear infinite
}

#show,
.spin_container,
.modalopen_bl,
.promo_block {
    display: flex;
    align-items: center;
    justify-content: center
}

.modalopen_bl {
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 50px;
    transition: all ease .4s
}

.modalopen_bl._right {
    right: 20px
}

.modalopen_bl._left {
    left: 20px
}

#show {
    position: absolute;
    text-align: center;
    cursor: pointer;
    width: 100%;
    height: 100%
}

#show>img {
    width: 32px;
    height: 32px
}

.spin9 {
    background: conic-gradient(from -90deg, #041248 0%, #2d4192 11.1111%, #041248 0%, #2d4192 22.2222%, #041248 0%, #2d4192 33.3333%, #041248 0%, #2d4192 44.4444%, #041248 0%, #2d4192 55.5556%, #041248 0%, #2d4192 66.6667%, #041248 0%, #2d4192 77.7778%, #041248 0%, #2d4192 88.8889%, #041248 0%, #2d4192 100%)
}

.spin7 {
    background: conic-gradient(from -90deg, #041248 0%, #2d4192 14.2857142857%, #041248 0%, #2d4192 28.5714285714%, #041248 0%, #2d4192 42.8571428571%, #041248 0%, #2d4192 56.142857%, #041248 0%, #2d4192 71.4285714286%, #041248 0%, #2d4192 85.7142857143%, #041248 0%, #2d4192 100%)
}

.spin5 {
    background: conic-gradient(from -90deg, #041248 0%, #2d4192 20%, #041248 0%, #2d4192 40%, #041248 0%, #2d4192 60%, #041248 0%, #2d4192 80%, #041248 0%, #2d4192 100%)
}

.spin3 {
    background: conic-gradient(from -90deg, #041248 0%, #2d4192 33.3333333333%, #041248 0%, #2d4192 66.6666666667%, #041248 0%, #2d4192 100%)
}

.center_circle {
    width: 80px;
    height: 80px;
    position: absolute;
    background: url(one_logo.475ab841.svg);
    background-size: 130%;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 9px #08080866;
    z-index: 20
}

.promo_block {
    height: 46px;
    margin-bottom: 32px;
    background: #ffffff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    position: relative
}

#promo_cont {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 2px;
    display: none;
    color: #191919
}

.copy_promo {
    cursor: pointer;
    position: absolute;
    left: 15px;
    line-height: 0
}

.copy_promo img {
    width: 18px;
    height: 18px
}

#copy_mesage {
    background: #191919;
    border: .5px solid rgba(255, 255, 255, .25);
    border-radius: 99px;
    padding: 8px 16px;
    display: none;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #fefefe
}

#prom_styl {
    display: none
}

.wining {
    display: none;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    opacity: .7;
    padding-bottom: 16px
}

#ywp {
    position: absolute;
    width: 100%;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    justify-content: center;
    display: flex;
    align-items: center;
    color: var(--texts);
    margin-top: 95px
}

#ywp img {
    margin-right: 12px
}

#close_window {
    height: 49px;
    border: none;
    background: var(--main-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    width: 100%;
    cursor: pointer;
    color: #fff;
    display: none
}

.close_mobile_overflow {
    display: none
}

.show_modal0 {
    animation: spin 100s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@media (max-width: 950px) {
    #while_content {
        -webkit-top: 100vh;
        top: 100vh;
        display: flex !important
    }

    #ywp {
        margin-top: 29px
    }

    .clos_modal1 {
        display: block
    }

    .slide_left {
        transform: rotate(90deg)
    }

    .deal-wheel {
        flex-wrap: wrap;
        position: absolute;
        top: -250px
    }

    .clos_modal {
        display: none
    }

    .close_mobile_overflow {
        display: flex;
        position: absolute;
        text-align: center;
        right: 16px;
        top: 16px;
        width: 50px;
        height: 50px;
        background: #ffffff;
        box-shadow: 0 4px 28px #00000040;
        border-radius: 50%;
        justify-content: center;
        align-items: center
    }

    .close_mobile_overflow a {
        line-height: 0;
        display: block;
        position: inherit;
        margin: 0;
        padding: 0
    }

    .liner {
        display: none
    }

    .slide_right {
        color: #fff;
        max-width: 100%;
        position: relative;
        padding: 35px 30px 50px;
        text-align: center
    }

    #ywp {
        bottom: -30px;
        position: inherit
    }

    .min_sp {
        display: block
    }

    .spin_container {
        --size: clamp(250px, 125vmin, 600px)
    }

    #while_content {
        position: fixed;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: 100vh;
        overflow: scroll;
        overflow-x: hidden
    }

    .slide_right_tit {
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
        text-align: center;
        color: #fff
    }

    .slide_right_text {
        font-family: var(--font-family);
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        color: #fff;
        opacity: .7
    }
}

@media (max-width: 480px) {
    .deal-wheel {
        top: -190px;
        min-height: 853px
    }

    .spin_container {
        --size: clamp(250px, 142vmin, 488px)
    }
}

#btn_send {
    position: relative;
    font-size: 15px;
    overflow: hidden;
    transition: ease .3s;
    height: 59px;
    background: linear-gradient(90deg, #cb356b 0%, #bd3f32 100%) !important;
    box-shadow: 0 0 29px #9d0c3cbf;
    border-radius: 16px;
    text-transform: uppercase;
    font-weight: 700
}

@keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0
    }

    30% {
        left: 110%;
        margin-left: 80px
    }

    to {
        left: 110%;
        margin-left: 80px
    }
}

.promo_block._hide {
    display: none !important
}

#privacyHref {
    color: #7d93eb !important
}

.checkbox-box-ywp {
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    border-radius: 4px;
    border: 2px solid var(--main-color);
    position: relative;
    display: inline-block;
    margin: 0 6px 0 0
}

.checkbox-box-ywp:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: var(--main-color);
    top: 2px;
    left: 2px;
    transition: all ease .4s;
    opacity: 0
}

#chekboxYWP:checked~.labelcheck .checkbox-box-ywp:before {
    opacity: 1
}

.linkItem_right_side {
    font-family: Girloy !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 19px !important;
    color: #7d93eb !important;
    text-decoration-line: underline !important
}

.word_linkItem_right_site {
    font-family: Girloy !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 19px !important
}

.hystmodal__window {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 30px 40px;
    gap: 60px;
    position: relative;
    width: 500px;
    background: #ffffff;
    border-radius: 32px
}

.hystmodal__window * {
    line-height: 150%;
    text-align: center;
    font-family: Mulish
}

.hystmodal__window span {
    color: #191919;
    font-size: 15px;
    letter-spacing: .02em;
    text-transform: uppercase
}

.hystmodal__window h1 {
    color: #080808;
    font-size: 34px;
    line-height: 43px;
    text-transform: uppercase
}

.hystmodal__window p {
    color: #191919;
    font-size: 15px;
    letter-spacing: .02em
}

.hystmodal__window button.receive {
    position: relative;
    font-size: 15px;
    overflow: hidden;
    transition: ease .3s;
    height: 59px;
    background: linear-gradient(90deg, #cb356b 0%, #bd3f32 100%) !important;
    box-shadow: 0 0 29px #9d0c3cbf;
    border-radius: 16px;
    outline: none;
    border: none;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700
}