.live-now {
  background-color: white !important;
  animation: blink 2s infinite; /* controls speed and looping */
}

/* Defines the slow red blinking animation */
@keyframes blink {
  0%, 100% {
    background-color: orange;
    box-shadow: 0 0 6px red;
  }
  50% {
    background-color: darkred;
    box-shadow: 0 0 12px red;
  }
}