﻿#divPoGame img {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

#modalPoGame {}

    #modalPoGame .divPrize {
        width: 100%;
        text-align: center;
        position: absolute;
        top: 46%; left:0;
        font-size: 80px; font-weight:bold; color:#ff0000;
    }

.lefttoright {
    bottom: 15%;
    position: absolute;
    -webkit-animation: linear infinite;
    -webkit-animation-name: runltr;
    -webkit-animation-duration: 15s;
}

.ficon { position:relative }
.ficon .ic-close { position:absolute; right:0; top:0; cursor:pointer }
    .ficon .ic-close::after { content:'X'; width:20px; height:20px; font-size:12px; font-weight:bold; color:#ffffff; background-color:#fbc503; display:flex; justify-content:center; align-items:center; border-radius:50% }
    .ficon .ic-close.s2 { right:auto; left:0 }

@-webkit-keyframes runltr {
    0% {
        left: 5%;
    }

    50% {
        left: 90%;
    }

    100% {
        left: 5%;
    }
}


.uptodown {
    position: absolute;
    -webkit-animation: linear infinite;
    -webkit-animation-name: runutd;
    -webkit-animation-duration: 17s;
}

@-webkit-keyframes runutd {
    0% {
        top: 10%;
    }

    50% {
        top: 80%;
    }

    100% {
        top: 10%;
    }
}
