
//////////////////////////////
// rollOut.scss
// @src - https://github.com/daneden/animate.css/blob/master/source/specials/rollOut.css
///////////////////////////////

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@if da-import("rollOut") == true {
  @keyframes rollOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
  }
}
