.ripple {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 1;
  transform: scale(0);
  pointer-events: none;
}

.ripple.is-reppling {
  animation: rippleAnimate .6s linear;
}
.ripple.is-reppling-short-duration {
  animation: rippleAnimate .4s linear;
}
.ripple.is-reppling-long-duration{
  animation: rippleAnimate 1s linear;
}

.ripple-parent {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

@keyframes rippleAnimate {
  100% {
    opacity: 0;
    transform: scale(3);
  }
}
