﻿#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 #divPoGame { position:relative }

    #modalPoGame .divPrize {
        width: 100%;
        text-align: center;
        position: absolute;
        top: 50%;
        font-size: 34px;
        left:50%;
        transform:translate(-50%,-50%);
        max-width:300px;
        font-weight:bold;
        color:#ffffff;
        text-shadow:0px 0px 10px #e8bf43,0px 0px 10px #e8bf43,0px 0px 10px #e8bf43,0px 0px 10px #e8bf43
    }

.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%;
    }
}
