  /* animation parameters */
.animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes horizontalBounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
  40% {transform: translateX(-30px);}
  60% {transform: translateX(-15px);}
}

/* custom animation classes */
.fingerPoint {
  animation-name: horizontalBounce;
		display: inline-block;
		margin-right: 10px;
		color: #20a8d8;
}