@import './animate.scss'; 

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

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

