@import './animate.scss'; 

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translateX(100%) skewX(30deg);
    opacity: 0;
  }
}

@mixin lightSpeedOut($args...) {
  animation-timing-function: ease-in;
  @include animate(lightSpeedOut, $args...);
}


