body {
    margin: 0
}

@font-face {
    font-family: 'Arial', serif;
    src: url(../font/Arial.717bd8862ef4af09.TTF)
}

:root {
    --operator-main-color: rgb(93 73 158);
    --operator-main-dark-color: rgb(77 49 167);
    --operator-main-color-hex: #5d499e;
    --operator-main-color-secondary: rgb(93 73 158 / 70%);
    --operator-main-light-color: rgb(93 73 158 / 50%);
    --operator-wh-first-color: rgb(93 73 158);
    --operator-wh-second-color: #fff;
    --operator-wh-second-color-secondary: rgb(255 255 255 / 70%);
    --operator-wh-second-light-color: rgb(255 255 255 / 50%);
    --operator-wh-text-first-color: #fff;
    --operator-wh-text-second-color: rgb(93 73 158);
    --operator-wh-box-shadow-color: #fff;
    --operator-btn-box-shadow-color: rgb(93 73 158 / 30%);
    --operator-btn-box-shadow-light-color: rgb(93 73 158 / 20%);
    --operator-logo-text-shadow-color: #fff;
    --operator-go-website-color: #271a52
}

html {
    background-color: #0c0b10
}


.page-loading {
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    background: var(--operator-main-color);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
    border-color: #fff transparent transparent transparent
}

.lds-ring div:nth-child(1) {
    animation-delay: -.45s
}

.lds-ring div:nth-child(2) {
    animation-delay: -.3s
}

.lds-ring div:nth-child(3) {
    animation-delay: -.15s
}

@keyframes lds-ring {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.logo {
    max-height: 50px
}

.scg-description {
    color: #fff;
    font-family: 'Arial', serif;
}

.menu {
    position: fixed;
    height: 70px;
    width: 100%;
    background: var(--operator-main-color);
    background-image: linear-gradient(160deg, var(--operator-main-color), var(--operator-main-dark-color));
    z-index: 100000;
    display: flex;
    justify-content: space-between;
    top: 0;
    align-items: center;
    padding: 20px 35px
}

.menu > a {
    padding: 20px 30px;
    text-decoration: none;
    color: #fff;
    font-family: 'Arial', serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 15px;
    background-color: var(--operator-go-website-color)
}

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

.menu .items a {
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', serif;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 15px;
    font-weight: 700
}

.menu img {
    max-height: 100px;
    padding: 10px;
    max-width: 175px
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-text-size-adjust: none;
    text-size-adjust: none
}

html {
    background-color: #0c0b10
}

body {
    font-family: Poppins, Helvetica Neue, Arial, sans-serif
}

.zoomInDown {
    animation-name: zoomInDown
}

.zoomInLeft {
    animation-name: zoomInLeft
}

.slideInLeft {
    animation-name: slideInLeft
}

.tada {
    animation-name: tada
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translateY(-1000px);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translateY(60px);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate(-1000px);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate(10px);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate(-100%);
        visibility: visible
    }

    to {
        transform: translate(0)
    }
}

@keyframes tada {
    0% {
        transform: scale(1)
    }

    5%,
    10% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    15%,
    25%,
    35%,
    40% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    20%,
    30%,
    40% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    50%,
    to {
        transform: scale(1)
    }
}

.page {
    position: relative;
    background-image: url(/assets/img/page_bg.jpeg);
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.page__body {
    width: 100%;
    position: relative;
    z-index: 2
}

.page__bg {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-repeat: no-repeat;
    transition: .5s ease
}

.page__bg--back {
    top: 0;
    left: 35%;
    background-size: 926.5px 930.5px;
    background-image: url(/assets/img/parallax-bg-back.png);
    z-index: 1
}

.page__bg--middle {
    top: -40px;
    left: 45%;
    background-size: 993px 925.5px;
    background-image: url(/assets/img/parallax-bg-middle.png);
    z-index: 3
}

.page__bg--front {
    top: -13%;
    left: 80%;
    background-size: 349px 243.5px;
    background-image: url(/assets/img/parallax-bg-front.png);
    z-index: 4
}

.page__bg--offset {
    animation-name: helloBgInLeft;
    animation-duration: 1s;
    transform: translate(-20%) !important
}

.page__bg--offset.page__bg--middle {
    left: 40%
}

.page__footer {
    display: none
}

.page--centered {
    transform: translate(-400px)
}

@media (max-width: 980px) {
    .page__bg--back {
        left: 25%
    }

    .menu-item {
        display: none
    }
}

@media (max-width: 760px) {
    .copyright {
        display: none
    }

    .page {
        display: block
    }

    .page__footer {
        color: #fff;
        display: block;
        position: relative;
        z-index: 10
    }
}

@media (max-width: 640px) {
    .page {
        min-height: auto
    }
}

@keyframes helloBgInLeft {
    0% {
        transform: translate(-100%);
        opacity: 0
    }

    to {
        transform: translate(-20%);
        opacity: 1
    }
}

@media (max-width: 760px) {
    .logo {
        margin-bottom: 30px
    }
}

@media (max-width: 460px) {
    .logo {
        margin-bottom: 10px
    }
}

@media (max-width: 375px) {
    .logo {
        height: 34px
    }
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 40px;
    background-color: transparent;
    border: none;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    min-height: 46px;
    transition: .2s ease;
    outline: none;
    overflow: hidden
}

.button[type=reset],
.button[type=button],
.button[type=submit] {
    -webkit-appearance: button
}

.button:not(:disabled) {
    cursor: pointer
}

.button__shadow {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width .1s ease, height .1s ease;
    height: 0;
    width: 0;
    border-radius: 40px;
    pointer-events: none
}

.button:hover .button__shadow {
    width: 180px;
    height: 180px
}

.button__counter,
.button__body {
    z-index: 1
}

.button__counter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3px;
    margin-right: -5px;
    padding-right: 1px;
    width: 30px;
    height: 30px;
    line-height: .9;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #d84d30 inset
}

.button__body {
    padding: 0 20px
}

.button:active {
    transform: translateY(2px)
}

.button:disabled,
.button--disabled {
    opacity: .5
}

.button,
.button--normal {
    padding: 4px;
    font-size: 14px
}

.button--secondary {
    background-color: #121018;
    border: 1px solid var(--operator-main-color)
}

.button--secondary-light {
    background-color: #121018;
    border: 1px solid rgb(255 255 255 / 50%)
}

.button--secondary:active {
    box-shadow: 0 0 0 3px var(--operator-main-color) inset, 0 5px 0 -2px var(--operator-btn-box-shadow-color), 0 10px 0 -4px var(--operator-btn-box-shadow-light-color), 0 10px 20px var(--operator-btn-box-shadow-color)
}

.button--secondary:not(:disabled) .button__shadow {
    background: radial-gradient(circle closest-side, rgba(255, 45, 0, .4), rgba(255, 0, 0, 0))
}

.button--primary {
    background-color: var(--operator-main-color);
    background-image: linear-gradient(160deg, var(--operator-main-color), var(--operator-main-color-secondary));
    box-shadow: 0 0 0 3px var(--operator-main-color) inset, 0 5px 0 -2px var(--operator-btn-box-shadow-color), 0 10px 0 -4px var(--operator-btn-box-shadow-light-color), 0 10px 20px var(--operator-btn-box-shadow-color)
}

.button--primary:active {
    box-shadow: 0 0 0 3px var(--operator-main-color) inset, 0 5px 0 -2px var(--operator-btn-box-shadow-color), 0 10px 0 -4px var(--operator-main-color) 0%, 0 5px 50px var(--operator-main-light-color)
}

.button--primary .button__shadow {
    background: radial-gradient(circle closest-side, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0))
}

.button--tada {
    animation: tada 2s linear infinite
}

.container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 25vh 70px 10vh;
    min-height: 900px;
    width: 100%
}

.container__body {
    max-width: 500px;
    position: relative;
    opacity: 0;
    z-index: 1;
    transform: translate(-50px)
}

.container__body--show {
    opacity: 1;
    transform: translate(0);
    transition: .5s ease
}

.container__wheel {
    position: absolute;
    right: 0;
    top: 125px;
    transition: 1s ease
}

.container__wheel--centered {
    right: 50%;
    transition: 0 ease-in;
    transform: translate(50%) scale(1.2)
}

.container__person {
    position: absolute;
    right: -15%;
    bottom: -30%;
    max-width: 600px;
    transition: 1.5s ease;
    pointer-events: none
}

.container__person--offset {
    animation-name: helloPersonInLeft;
    animation-duration: 1s;
    transform: translate(-200px)
}

@media (max-width: 1400px) {
    .container {
        padding-left: 30px;
        padding-right: 30px
    }

    .container__person {
        max-width: 500px;
        bottom: -15%;
        right: -10%
    }
}

@media (max-width: 1200px) {
    .container__person {
        max-width: 480px;
        bottom: -10%;
        right: -15%
    }

    .container__wheel {
        right: -60px
    }

    .container__wheel--centered {
        right: 50%
    }
}

@media (max-width: 980px) {
    .container {
        padding-top: 120px;
        min-height: 740px;
        padding-bottom: 60px
    }

    .container__person {
        max-width: 430px;
        bottom: -120px
    }
}

@media (max-width: 880px) {
    .container {
        padding-top: 80px;
        min-height: 640px
    }

    .container__body {
        max-width: 400px
    }

    .container__wheel {
        right: -140px;
        transform: scale(.8);
        transform-origin: center center
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%) scale(1.1)
    }

    .container__person {
        max-width: 340px;
        right: -14%
    }
}

@media (max-width: 760px) {
    .container {
        padding: 70px 40px 380px;
        min-height: auto
    }

    .container__wheel {
        top: auto;
        right: 0;
        bottom: -180px;
        transform: rotate(10deg) scale(1)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.9)
    }

    .container__payments {
        display: none
    }

    .container__person {
        max-width: 430px;
        bottom: -120px;
        right: -20%
    }

    .container__person--offset {
        right: -40%
    }
}

@media (max-width: 640px) {
    .container {
        padding-bottom: 350px
    }

    .container__body {
        max-width: auto
    }

    .container__wheel {
        right: -20%;
        transform: rotate(55deg) scale(.8)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.7)
    }

    .container__person {
        max-width: 340px;
        bottom: -120px;
        right: -20%
    }

    .container__person--offset {
        right: -50%
    }
}

@media (max-width: 460px) {
    .container {
        padding-left: 30px;
        padding-right: 0
    }

    .container__wheel {
        right: -30%;
        transform: rotate(55deg) scale(.7)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.6)
    }

    .container__person {
        max-width: 340px;
        bottom: -120px;
        right: -20%
    }

    .container__person--offset {
        right: -60%
    }
}

@media (max-width: 375px) {
    .menu > a {
        font-size: 12px
    }

    .container {
        padding-bottom: 280px
    }

    .container__wheel {
        right: -40%;
        bottom: -260px;
        transform: rotate(55deg) scale(.7)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.5)
    }

    .container__person {
        max-width: 310px;
        bottom: -120px;
        right: -30%
    }

    .container__person--offset {
        right: -80%
    }
}

@keyframes helloPersonInLeft {
    0% {
        transform: translate(-100px);
        opacity: 0
    }

    to {
        transform: translate(-200px);
        opacity: 1
    }
}

.wheel-container {
    position: relative
}

.wheel-container__highlighter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -12px;
    right: calc(50% - 35px);
    background-position: center center;
    background-image: url(/assets/img/wheel-highlight.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(-3deg);
    opacity: 0
}

.wheel-container__highlighter--show {
    opacity: 1;
    transition: .3s ease
}

.wheel-container__clicker {
    position: absolute;
    top: calc(50% - 25px);
    left: -34px;
    z-index: 1;
    pointer-events: none
}

.wheel-container__center {
    position: absolute;
    width: 108px;
    height: 108px;
    box-shadow: 0 16px 25px #0009
}

.wheel-container__center,
.wheel-container__center:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: #d2974e;
    background-image: url(/assets/img/wheel-center.png);
    background-size: cover
}

.wheel-container__center:after {
    content: "";
    width: 70px;
    height: 70px;
    box-shadow: 0 6px 6px #00000040, 0 -6px 6px #ffffff40
}

@media (max-width: 1400px) {
    .wheel-container__clicker {
        top: calc(50% - 15px);
        left: -28px
    }

    .wheel-container__highlighter {
        left: -10px;
        right: calc(50% - 20px)
    }

    .wheel-container__center {
        width: 80px;
        height: 80px;
        box-shadow: 0 10px 25px #0009
    }

    .wheel-container__center:after {
        width: 50px;
        height: 50px
    }
}

.wheel {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 12px #031422, 0 0 0 18px #032640, 0 0 0 30px #031929, 0 0 100px #004375, 0 0 100px #004375
}

.wheel:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    background-image: radial-gradient(rgba(70, 0, 0, 0) 64%, rgba(81, 0, 0, .51) 76%);
    pointer-events: none
}

.wheel__sector {
    position: absolute;
    transform-origin: center bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    margin-left: -50%;
    left: 50%;
    top: 0%
}

.wheel__sector:nth-of-type(1) {
    transform: rotate(36deg)
}

.wheel__sector:nth-of-type(2) {
    transform: rotate(72deg)
}

.wheel__sector:nth-of-type(3) {
    transform: rotate(108deg)
}

.wheel__sector:nth-of-type(4) {
    transform: rotate(144deg)
}

.wheel__sector:nth-of-type(5) {
    transform: rotate(180deg)
}

.wheel__sector:nth-of-type(6) {
    transform: rotate(216deg)
}

.wheel__sector:nth-of-type(7) {
    transform: rotate(252deg)
}

.wheel__sector:nth-of-type(8) {
    transform: rotate(288deg)
}

.wheel__sector:nth-of-type(9) {
    transform: rotate(324deg)
}

.wheel__sector:nth-of-type(10) {
    transform: rotate(360deg)
}

@media (max-width: 1400px) {
    .wheel {
        width: 660px;
        height: 660px
    }
}

@media (max-width: 1200px) {
    .wheel {
        width: 620px;
        height: 620px
    }
}

@media (max-width: 980px) {
    .wheel {
        width: 580px;
        height: 580px
    }
}

@media (max-width: 760px) {
    .wheel {
        width: 620px;
        height: 620px
    }
}

.wheel-sector__bg {
    position: absolute;
    transform-origin: 100% 100%;
    background-color: var(--operator-main-color);
    background-image: linear-gradient(150deg, var(--operator-main-color-secondary), var(--operator-main-light-color));
    width: 410px;
    height: 410px;
    left: 50%;
    top: 100%;
    margin-top: -410px;
    margin-left: -410px;
    box-shadow: 5px 5px 15px var(--operator-main-light-color) 0 0 5px var(--operator-main-light-color)
}

.wheel-sector__bg:after,
.wheel-sector__bg:before {
    content: "";
    display: block;
    position: absolute;
    top: 38%;
    bottom: 0;
    width: 3px;
    background-image: linear-gradient(var(--operator-main-color-hex) 0%, var(--operator-main-color-hex) 14.06%, var(--operator-main-color-hex) 29.17%, var(--operator-main-color-hex) 100%);
    z-index: -1
}

.wheel-sector__bg:after {
    left: 0
}

.wheel-sector__bg:before {
    right: 0
}

.wheel__sector:nth-child(2n) .wheel-sector__bg {
    background-color: var(--operator-wh-second-color);
    background-image: linear-gradient(150deg, var(--operator-wh-second-color-secondary), var(--operator-wh-second-light-color))
}

.wheel-sector__bg:nth-of-type(1) {
    transform: rotate(72deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(2) {
    transform: rotate(108deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(3) {
    transform: rotate(144deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(4) {
    transform: rotate(180deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(5) {
    transform: rotate(216deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(6) {
    transform: rotate(252deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(7) {
    transform: rotate(288deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(8) {
    transform: rotate(324deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(9) {
    transform: rotate(360deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(10) {
    transform: rotate(396deg) skew(54deg)
}

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

.wheel-sector__pin {
    display: block;
    position: absolute;
    top: 20px;
    left: 50%;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: #ed9f44;
    background-image: url(/assets/img/wheel-pin.png);
    background-size: cover;
    box-shadow: 0 6px 6px #00000080
}

@media (max-width: 1400px) {
    .wheel-sector__pin {
        top: 15px;
        width: 12px;
        height: 12px
    }
}

.wheel-sector-body {
    position: absolute;
    z-index: 1;
    transform: rotate(90deg);
    text-transform: uppercase;
    text-align: center;
    padding-right: 90px;
    font-weight: 700;
    line-height: 1
}

.wheel__sector:nth-child(1n) .wheel-sector-body {
    color: var(--operator-wh-text-first-color)
}

.wheel__sector:nth-child(2n) .wheel-sector-body {
    color: var(--operator-wh-text-second-color)
}

.wheel-sector-body__amount,
.wheel-sector-body__text {
    display: block;
    max-width: 210px;
    text-shadow: 2px -2px 0 rgba(255, 255, 255, .1);
    font-family: 'Arial', serif;
    letter-spacing: 1px
}

.wheel-sector-body__amount {
    font-size: 48px
}

.wheel-sector-body__text {
    font-size: 24px
}

.wheel-sector--highlight .wheel-sector-body__amount,
.wheel-sector--highlight .wheel-sector-body__text {
    transition: .3s ease;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 45, 45, .5);
    transition: .2s ease
}

@media (max-width: 1400px) {
    .wheel-sector-body {
        padding-right: 75px
    }

    .wheel-sector-body__amount {
        font-size: 38px
    }

    .wheel-sector-body__text {
        font-size: 20px
    }
}

.wheel-clicker {
    display: block;
    background-repeat: no-repeat;
    background-image: url(/assets/img/wheel-clicker.png);
    background-size: 71px 49px;
    width: 71px;
    height: 49px;
    transform-origin: 24% 45%;
    transition: .1s ease
}

@media (max-width: 1400px) {
    .wheel-clicker {
        width: 53.25px;
        height: 36.75px;
        background-size: 53.25px 36.75px
    }
}

.screengame {
    display: inline-block;
    max-height: 0;
    transition: .7s ease;
    overflow: hidden
}

.screengame__inner {
    visibility: hidden
}

.screengame--show .screengame__inner {
    visibility: visible;
    animation-name: zoomInLeft;
    animation-duration: 1s
}

.win-monitor {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 30px 0;
    align-items: start
}

.win-item {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center
}

.win-item__amount {
    font-size: 46px;
    line-height: .85;
    color: var(--operator-main-color)
}

.win-item__amount--big {
    font-size: 130px
}

.win-item__text {
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 0 10px
}

.win-item__amount,
.win-item__text {
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--operator-main-light-color);
    font-family: 'Arial', serif;
    letter-spacing: 1px
}

.win-item--independent {
    margin-bottom: 5px
}

.win-item--independent .win-item__text {
    margin: 0
}

.win-item--extra .win-item__amount {
    font-size: 46px
}

.win-item--extra .win-item__text {
    line-height: 1.2;
    font-size: 18px;
    margin: 0 -10px 0 6px
}

.win-item__accent {
    color: #fff
}

.win-item--extra {
    height: 90px;
    position: relative;
    margin: 5px 60px 50px 20px;
    padding-left: 20px;
    background-repeat: repeat-x;
    background-image: url(/assets/img/win-item-body.svg)
}

.win-item--extra:after,
.win-item--extra:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    background-repeat: no-repeat
}

.win-item--extra:before {
    left: -5px;
    width: 5px;
    background-image: url(/assets/img/win-item-before.svg)
}

.win-item--extra:after {
    right: -60px;
    width: 60px;
    background-image: url(/assets/img/win-item-after.svg)
}

.win-item--first {
    margin-left: 5px;
    padding-left: 0
}

@media (max-width: 1400px) {
    .win-item__amount {
        font-size: 46px
    }

    .win-item__amount--big {
        font-size: 120px
    }

    .win-item__text {
        font-size: 24px
    }
}

@media (max-width: 1200px) {
    .win-item {
        margin-bottom: 25px
    }

    .win-item__amount {
        font-size: 46px
    }

    .win-item__amount--big {
        font-size: 106px
    }

    .win-item__text {
        font-size: 20px;
        margin-left: 7px
    }

    .win-item--independent {
        margin-bottom: 5px
    }

    .win-item--extra .win-item__amount {
        font-size: 38px
    }

    .win-item--extra .win-item__text {
        font-size: 14px;
        margin-left: 4px;
        margin-right: -5px
    }

    .win-item--extra {
        height: 70px;
        margin: 5px 45px 50px 20px;
        background-size: 1px 68px;
        padding-left: 15px
    }

    .win-item--extra:before {
        background-size: 100px 68px
    }

    .win-item--extra:after {
        right: -45px;
        width: 45px;
        background-size: 45px 68px
    }

    .win-item--first {
        margin-left: 0;
        padding-left: 0
    }
}

@media (max-width: 760px) {
    .win-item {
        margin-bottom: 15px
    }

    .win-item--extra {
        margin-bottom: 22px
    }
}

@media (max-width: 460px) {
    .win-item__amount {
        font-size: 48px
    }

    .win-item__amount--big {
        font-size: 84px
    }

    .win-item__text {
        font-size: 14px;
        line-height: 1.5;
        margin-left: 5px
    }

    .win-item--independent {
        margin-bottom: 4px
    }
}

@media (max-width: 375px) {
    .win-item--extra .win-item__amount {
        font-size: 34px
    }

    .win-item--extra .win-item__text {
        font-size: 12px;
        margin-left: 4px;
        margin-right: -5px
    }

    .win-item--first {
        margin-left: 0;
        padding-left: 0
    }
}

.win-controls {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px
}

.win-controls__item {
    position: relative;
    list-style: none;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: .4s ease
}

.win-controls__item--hide {
    opacity: 0;
    transform: translate(-110%);
    z-index: -1
}

@media (max-width: 460px) {
    .win-controls {
        margin-top: 20px;
        margin-bottom: 0
    }

    .win-controls__item--hide {
        margin-top: -50px
    }
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    opacity: .4;
    max-width: 440px
}

.payment-list__item {
    padding: 2px 4px;
    width: calc(100% / 6);
    list-style: none
}

.payment-item {
    display: block;
    width: 100%;
    height: auto
}

.footer {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: linear-gradient(to bottom, #0A0E2B, #0C0B10);
    padding: 20px;
    font-family: 'Arial', serif;
}

.copyright {
    color: #fff;
    font-family: 'Arial', serif;
}

/*** NOTIFICATION ***/

.simple-notification {
    border-radius: 7px !important
}

.simple-notification:hover {
    opacity: .7 !important
}

.simple-notification.has-icon .sn-content, .simple-notification.has-icon .sn-html, .simple-notification.has-icon .sn-title {
    padding: 7.5px 50px 0 0 !important;
    width: 375px;
    font-family: 'Arial', serif;
}

.simple-notification .icon {
    width: 50px !important
}

.simple-notification-wrapper {
    z-index: 10000 !important;
    width: 400px !important
}

.simple-notification.success {
    background: #009688 !important
}

.simple-notification.success .sn-progress-loader span {
    background: #025f56 !important
}

.simple-notification .sn-progress-loader {
    padding-left: 2px !important
}

.bottom-notification {
    bottom: 35px;
    position: fixed !important;
    max-width: 500px;
    right: 15px
}

@media (max-width: 760px) {
    .simple-notification-wrapper {
        max-width: 100%;
        width: 100% !important;
        display: flex;
        right: 0 !important;
        align-items: center;
        justify-content: center
    }

    .simple-notification .sn-title, .simple-notification .sn-content {
        max-width: 250px
    }
}


.simple-notification-wrapper {
    position: fixed;
    width: 300px;
    z-index: 1000
}

.simple-notification-wrapper.left {
    left: 20px
}

.simple-notification-wrapper.top {
    top: 20px
}

.simple-notification-wrapper.right {
    right: 20px
}

.simple-notification-wrapper.bottom {
    bottom: 20px
}

.simple-notification-wrapper.center {
    left: 50%;
    transform: translateX(-50%)
}

.simple-notification-wrapper.middle {
    top: 50%;
    transform: translateY(-50%)
}

.simple-notification-wrapper.middle.center {
    transform: translate(-50%, -50%)
}

@media (max-width: 340px) {
    .simple-notification-wrapper {
        width: auto;
        left: 20px;
        right: 20px
    }
}


.simple-notification {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-bottom: 10px;
    color: #fff;
    cursor: pointer;
    transition: all .5s;
    min-height: 70px
}

.simple-notification .sn-content,
.simple-notification .sn-html,
.simple-notification .sn-title {
    margin: 0
}

.simple-notification .sn-title {
    line-height: 30px;
    font-size: 20px
}

.simple-notification .sn-content {
    font-size: 16px;
    line-height: 20px
}

.simple-notification.has-icon .sn-content,
.simple-notification.has-icon .sn-html,
.simple-notification.has-icon .sn-title {
    padding: 0 50px 0 0
}

.simple-notification .icon {
    position: absolute;
    box-sizing: border-box;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    padding: 10px
}

.simple-notification .icon.icon-hover:hover {
    opacity: .5
}

.simple-notification .icon svg {
    fill: #fff;
    width: 100%;
    height: 100%
}

.simple-notification .icon svg g {
    fill: #fff
}

.simple-notification.rtl-mode.has-icon .sn-content,
.simple-notification.rtl-mode.has-icon .sn-html,
.simple-notification.rtl-mode.has-icon .sn-title {
    padding: 0 0 0 50px
}

.simple-notification.rtl-mode {
    direction: rtl
}

.simple-notification.rtl-mode .sn-content {
    padding: 0 0 0 50px
}

.simple-notification.rtl-mode svg {
    left: 0;
    right: auto
}

.simple-notification.error {
    background: #f44336
}

.simple-notification.success {
    background: #8bc34a
}

.simple-notification.alert {
    background: #ffdb5b
}

.simple-notification.info {
    background: #03a9f4
}

.simple-notification.warn {
    background: #ffdb5b
}

.simple-notification .sn-progress-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px
}

.simple-notification .sn-progress-loader span {
    float: left;
    height: 100%
}

.simple-notification.success .sn-progress-loader span {
    background: #689f38
}

.simple-notification.error .sn-progress-loader span {
    background: #d32f2f
}

.simple-notification.alert .sn-progress-loader span {
    background: #edc242
}

.simple-notification.info .sn-progress-loader span {
    background: #0288d1
}

.simple-notification.warn .sn-progress-loader span {
    background: #edc242
}

.simple-notification.bare .sn-progress-loader span {
    background: #ccc
}

.simple-notification.warn div .sn-content,
.simple-notification.warn div .sn-html,
.simple-notification.warn div .sn-title {
    color: #444
}

@media(max-width: 375px) {
    ul#wheel-area,
    ul#wheel-area li,
    ul#wheel-area button {
        width: 100% !important;
    }
    ul#wheel-area input {
        width: 100% !important;
    }
}
