﻿#divPoGame img {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

#modalPoGame {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#modalPoGame .divPrize {
    width: 92%;
    text-align: center;
    position: absolute;
    top: 37%;
    font-size: 40px;
}

.mini-game-token {
    border-radius: 100%;
    padding: 0;
    right: -10px;
    top:20px;
    position: absolute;
    font-size: 13px;
    padding: 2px 7px;
    background: #ef2f27;
    color:white;
}

.mini-game-token:empty{
    display:none;
}

.lefttoright {
    bottom: 15%;
    position: absolute;
    touch-action: none;
    -webkit-animation: linear infinite alternate;
    -webkit-animation-name: runltr;
    transition: .5s;
    -webkit-animation-duration: 15s;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateZ(0);
}

@-webkit-keyframes runltr {
    0% {
        left: 5%;
    }

    50% {
        left: 90%;
    }

    100% {
        left: 5%;
    }
}


.uptodown {
    bottom: 15%;
    position: absolute;
    touch-action: none;
    transition: .5s;
    -webkit-animation: linear infinite alternate;
    -webkit-animation-name: runutd;
    -webkit-animation-duration: 15s;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
        -webkit-transform: translateZ(0);
}

@-webkit-keyframes runutd {
    0% {
        top: 15%;
    }

    50% {
        top: 70%;
    }

    100% {
        top: 15%;
    }
}