#pulsing-line {
    animation: pulse 1s infinite;
  }
  
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
  