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

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

    to {
      opacity: 0;
    }
  }
}
