#myloto-container .myloto-ball {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 10px;
    line-height: 50px;
    vertical-align: middle;
    font-size: 26px;
    font-weight: bold;
    color: black;
    text-align: center;
}

#myloto-container .myloto-yellow {
    background-color: #FFA500;
}

#myloto-container .myloto-blue {
    background-color: blue;
    color: white;
}

#myloto-container .myloto-hidden {
    display: none;
}

#myloto-buy {
    animation: buyBtnPulse 2s infinite;
}

@keyframes buyBtnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes myloto-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes myloto-zoom {
    from { transform: scale(1.5); }
    to { transform: scale(1); }
}
