/* A gentle breathing glow around the existing, stationary area markers. */
.jax-region-map .jax-area-hotspot > circle:first-of-type {
  filter: blur(4px);
  animation: jax-region-marker-glow 3s ease-in-out infinite;
}
.jax-region-map .jax-area-hotspot:nth-of-type(3n + 2) > circle:first-of-type {
  animation-delay: -1s;
}
.jax-region-map .jax-area-hotspot:nth-of-type(3n) > circle:first-of-type {
  animation-delay: -2s;
}
.jax-region-map .jax-area-hotspot > circle:last-of-type {
  filter: drop-shadow(0 0 3px rgba(8, 127, 134, .28));
}
.jax-region-map .jax-area-hotspot:hover > circle:first-of-type,
.jax-region-map .jax-area-hotspot:focus-visible > circle:first-of-type {
  animation: none;
  opacity: .42;
}
@keyframes jax-region-marker-glow {
  0%, 100% { opacity: .12; }
  50% { opacity: .42; }
}
@media (prefers-reduced-motion: reduce) {
  .jax-region-map .jax-area-hotspot > circle:first-of-type {
    animation: none;
    opacity: .22;
  }
}
