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

@if da-import("fadeInDown") == true {
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }

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