/* Ripple - Pure CSS Animation */

.ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, white 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, white 60%, transparent 100%);
}

.ripple-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  animation: ripple-animation 5s linear infinite;
}

@keyframes ripple-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: var(--ripple-opacity, 0.24);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: var(--ripple-opacity, 0.24);
  }
}
