/* FADE IN UP */

@keyframes fadeInUp {
    from {
      opacity: 0;
        transform: translate3d(0, -50px,0)
    }

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


body.fadeInUp {
  animation-name: fadeInUp;
}

/* FADE IN DOWN */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

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

body.fadeInDown {
  animation-name: fadeInDown;
}

/* BOUNCE IN UP */

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

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

body.bounceInUp {
  animation-name: bounceInUp;
}

/* BOUNCE IN RIGHT */

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

/* SLIDE IN RIGHT */

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

body.slideInRight {
  animation-name: slideInRight;
}
/* SLIDE IN UP */

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

@keyframes slideInUpAdmin {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, -32px, 0);
  }
}

body.slideInUp {
  animation-name: slideInUp;
}
/* 
body.admin-bar.slideInUp #wpadminbar,
body.admin-bar.slideInRight #wpadminbar,
body.admin-bar.bounceInUp #wpadminbar {
  top: -32px;
}
 */