﻿#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: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    font-size: 70px;
}

.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;
}

.fi-close {
    position: absolute;
    top: 0;
    right: 0;
    opacity: .7;
    text-align: right;
    border: 2px solid white;
    cursor: pointer;
    width: 22px;
    border-radius: 100%;
    height: 22px;
}

    .fi-close:hover {
        opacity: 1
    }

    .fi-close:before,
    .fi-close:after {
        position: absolute;
        margin-left: -10.5px;
        content: ' ';
        height: 16px;
        width: 2px;
        background-color: #fff;
        margin-top:2px
    }

    .fi-close:before {
        transform: rotate(45deg)
    }

    .fi-close:after {
        transform: rotate(-45deg)
    }

.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%;
    }
}