.statusAnimate {
    animation: glow linear 1s infinite;
}
@keyframes glow {
    0% { background-color:red; }
    50% { background-color:orange; }
    100% { background-color:red; }
}