@import './animate.scss'; 

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translateY(30);
  }

  60% {
    opacity: 1;
    transform: translateY(-0);
  }

  75% {
    transform: translateY(10);
  }

  90% {
    transform: translateY(-0);
  }

  to {
    transform: translateY(0);
  }
}

@mixin bounceInUp($args...) {
  @include animate(bounceInUp, $args...);
}

