.pulse {
  animation: pulse 3s infinite;
  animation-timing-function: ease-in-out;
  will-change: transform;
}

.pulse:hover {
  animation: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 #0a2dbe;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255,0,0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,0,0, 0);
  }
}

.pulse:hover {
  animation: none;
}

