@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */


/* flipInX */
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(0px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(0px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(0px);
    transform: perspective(0px);
    opacity: 1;
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(0px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(0px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(0px);
    transform: perspective(0px);
    opacity: 1;
  }
}

.flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
