.ripple-action:not(.disabled) {
  overflow: hidden;
  position: relative;
}
.ripple-action:not(.disabled) > .ripple {
  -webkit-animation: ripple 0.65s linear;
  animation: ripple 0.65s linear;
}

.ripple {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
}

@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}
@keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}
.ripple-light .ripple {
  background: rgba(255, 255, 255, 0.8);
}

.ripple-dark .ripple {
    background: rgba(0, 0, 0, 0.8);
}
