/* *****************************************
Animations Extract (keyframes only)
Source: Custom CSS by Thomas Volpe
***************************************** */

/* slideRight */
@-webkit-keyframes slideRight {
  from { left: -100px; opacity: 0; }
  to   { left: 0;      opacity: 1; }
}
@keyframes slideRight {
  from { left: -100px; opacity: 0; }
  to   { left: 0;      opacity: 1; }
}

/* slideLeft */
@-webkit-keyframes slideLeft {
  from { right: -100px; opacity: 0; }
  to   { right: 0;      opacity: 1; }
}
@keyframes slideLeft {
  from { right: -100px; opacity: 0; }
  to   { right: 0;      opacity: 1; }
}

/* scale-in-center */
@-webkit-keyframes scale-in-center {
  0%   { -webkit-transform: scale(0); transform: scale(0); opacity: 1; }
  100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}
@keyframes scale-in-center {
  0%   { -webkit-transform: scale(0); transform: scale(0); opacity: 1; }
  100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

/* glow */
@-webkit-keyframes glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* fadeIntext */
@-webkit-keyframes fadeIntext {
  from { opacity: 0; top: -50px; }
  to   { opacity: 1; top: 0; }
}
@keyframes fadeIntext {
  from { opacity: 0; top: -50px; }
  to   { opacity: 1; top: 0; }
}

/* scroll-grow (for scroll-linked progress bars) */
@-webkit-keyframes scroll-grow {
  from { scale: 0 1; }
  to   { scale: 1 1; }
}
@keyframes scroll-grow {
  from { scale: 0 1; }
  to   { scale: 1 1; }
}

