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

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

    to {
      transform: translate3d(0, 0, 0);
    }
  }
}
