@keyframes veitchBulletGlow {
  0%, 100% {
    opacity: .78;
    box-shadow: 0 0 2px rgba(77, 217, 139, .25);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 5px rgba(77, 217, 139, .9),
      0 0 12px rgba(77, 217, 139, .55);
  }
}

.trial-list li::before,
.acc-body li::before {
  animation: veitchBulletGlow 3.2s ease-in-out infinite !important;
}

@media (prefers-reduced-motion: reduce) {
  .trial-list li::before,
  .acc-body li::before {
    animation: none !important;
    opacity: 1;
    box-shadow: 0 0 6px rgba(77, 217, 139, .55);
  }
}
