/* Class blikacího textu */
.sts-blinking {
    animation: mymove 1.1s infinite alternate;
}

@keyframes mymove {
    from {opacity:0;}
    to {opacity: 1;}
}