@keyframes pulsate {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(220, 53, 69, 0.1);
  }
  100% {
    background-color: transparent;
  }
}

.pulsating-row {
  animation: pulsate 2s ease-in-out infinite;
}
