.ag-pulse-circle-wave {
  pointer-events: none;
}

.ag-pulse-circle {
  --ag-pulse-circle-size: 40px;
  --ag-pulse-circle-color: #5983bc;
  --ag-pulse-circle-duration: 1.4s;
  position: relative;
  display: block;
  flex: 0 0 auto;
  isolation: isolate;
  width: var(--ag-pulse-circle-size);
  height: var(--ag-pulse-circle-size);
  border: none;
  border-radius: 999px;
  background: radial-gradient(circle closest-side, var(--ag-pulse-circle-color) 0 60%, transparent 61%);
  box-shadow: none;
}

.ag-pulse-circle--small {
  --ag-pulse-circle-size: 40px;
  --ag-pulse-circle-duration: 1.4s;
}

.ag-pulse-circle--large {
  --ag-pulse-circle-size: 72px;
  --ag-pulse-circle-duration: 1.6s;
}

.ag-pulse-circle::before,
.ag-pulse-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ag-pulse-circle-color);
  pointer-events: none;
  z-index: -1;
}

.ag-pulse-circle::before {
  opacity: 0.22;
  transform: scale(1.04);
  animation: ag-pulse-circle-pulse var(--ag-pulse-circle-duration) ease-in-out infinite;
}

.ag-pulse-circle::after {
  opacity: 0.10;
  transform: scale(1.14);
  animation: ag-pulse-circle-bridge var(--ag-pulse-circle-duration) ease-in-out infinite;
}

@keyframes ag-pulse-circle-pulse {
  0%,
  100% {
    transform: scale(1.04);
    opacity: 0.22;
  }

  50% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@keyframes ag-pulse-circle-bridge {
  0%,
  100% {
    transform: scale(1.10);
    opacity: 0.08;
  }

  24% {
    transform: scale(1.14);
    opacity: 0.16;
  }

  50% {
    transform: scale(1.22);
    opacity: 0.14;
  }

  76% {
    transform: scale(1.14);
    opacity: 0.12;
  }
}
