.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-parent {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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