/*EFECTO RIPPLE BOTON*/
.ripple-container {
  position: relative;
  overflow: hidden;
}
.ripple-container .ripple {
  position: absolute;
  border-radius: 9999px;
  transform: scale(0);
  animation: ripple-animation 600ms linear;
  background-color: rgba(255, 255, 255, 0.4);
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}