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

@if da-import("fadeInLeftBig") == true {
  @keyframes fadeInLeftBig {
    from {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }
}
