.time_blinker {
  animation: blink-animation 1.5s steps(1, start) infinite;
}

@keyframes blink-animation {
  50% {
    visibility: hidden;
  }
}
