body{
    overscroll-behavior-y: contain;
}

#default-roulette {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    border: 5px solid #fec002;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
    margin: auto;
    background-image: url('/landing/roulette/img/spin_bg_desk.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: #250407;
}

#canvasConfetti {
    display: block;
    position: relative;
    z-index: 9999999;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#default-roulette-publi {
    padding: 1rem 0 0 0;
    background-color: #fec002;
    max-width: 850px;
    width: 100%;
    margin: auto;
}


@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

@-moz-keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

@-webkit-keyframes tohundred {
    0% {
        width: 0%;
    }

    10% {
        width: 5%;
    }

    20% {
        width: 30%;
    }

    80% {
        width: 80%;
    }

    90% {
        width: 82%;
    }

    100% {
        width: 100%;
    }
}

@-moz-keyframes move {
    0% {
        width: 0%;
    }

    10% {
        width: 5%;
    }

    20% {
        width: 30%;
    }

    80% {
        width: 80%;
    }

    90% {
        width: 82%;
    }

    100% {
        width: 100%;
    }
}


.the_canvas {
    width: 80%;
}

.canvasConfetti {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.default-roulette-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.default-roulette-header img {
    width: 100%;
    max-width: 300px;
}

.default-roulette-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 1.5rem;
    padding-bottom: 5rem;
}

.default-roulette-box-spin,
.default-roulette-box-border {
    position: absolute;
}

.default-roulette-box-spin {
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.default-roulette-box-spin img#spin_button {
    max-width: 120px;
    margin-top: -5rem;
    width: 100%;
    cursor: pointer;
}

.default-roulette-box-spin img#spin_button:hover {
    opacity: 1;
}

.default-roulette-box-border {
    z-index: 9;
    width: 100%;
}

.default-roulette-box-base {
    position: absolute;
    bottom: 0;
}

.default-roulette-end {
    padding: 0.5rem;
}

.default-roulette-end-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.default-roulette-end-desc span {
    display: block;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.6rem;
}

.default-roulette-end-desc img {
    max-width: 250px;
}

.default-roulette-end-title {
    text-align: center;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    font-size: 2rem;
    margin-top: 0.2rem;
    text-decoration: underline;
}

.button-trivial-next {
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    padding: 1rem;
    background-color: rgb(16, 150, 69);
    color: white !important;
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 350px;
    text-align: center;
    border-radius: 5px;
    background: linear-gradient(360deg, rgb(16, 150, 69) 1%, rgb(136, 197, 63) 100%);
}

.button-trivial-next:hover {
    color: white;
    background: linear-gradient(360deg, #8BC34A 1%, #CDDC39 100%);
}

.default-roulette-box-button {
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
    z-index: 10;
    padding-bottom: 1rem;
    padding-top: .5rem;
    border: none;
    outline: none;
    width: 100%;
}

.default-roulette-box-button .go {
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 220px;
    height: 100px;
    cursor: pointer;
    border: none;
}

.default-roulette-box-button .go:hover {
    opacity: 0.8;
}

.default-roulette-box-button .go.active {
    background-repeat: no-repeat;
    background-size: contain;
}

.rou-lang{
    display: none;
    width: 100%;
}

@media (max-width: 800px) {
    #canvasConfetti {
        z-index: 1;
    }

    .default-roulette-box-spin img#spin_button {
        max-width: 100px;
    }

    .default-roulette-header img {
        max-width: 250px;
    }
}

@media (max-width: 767px) {
    .default-roulette-box-button .go {
        display: block;
        width: 150px;
        height: 70px;
        cursor: pointer;
        border: none;
        padding-top: 0;
        padding-bottom: 0rem;
        margin-top: 0;
    }

    .default-roulette-end-desc img {
        max-width: 150px;
    }

    .button-trivial-next {
        margin-bottom: 0.2rem;
    }

    .default-roulette-end-desc span {
        font-size: 1.2rem;
    }

    .default-roulette-header {
        max-width: 200px;
    }

    .default-roulette-box-button {
        padding-bottom: 0;
        margin-top: -4rem;
    }
}


@media (max-width: 400px) {
    .default-roulette-header img {
        max-width: 200px;
    }
}
















.moveTem_2 {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: moveTem 2s;
    /* When the animation is finished, start again */
    animation-iteration-count: 2;
}

.moveTem:hover {
    animation: moveTem 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes moveTem {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}


.push-button{
    animation: pwg-push-button 1s infinite;
    transition: transform .2s
}
@keyframes pwg-push-button
{
     0% {
        transform: scale(1)
     }
     100% {
        transform: scale(1.3)
     }
}