.info-animation {
  animation: animationFrames ease 0.3s;
  animation-iteration-count: 1;
  -webkit-animation: animationFrames ease 0.3s;
  -webkit-animation-iteration-count: 1;
  -moz-animation: animationFrames ease 0.3s;
  -moz-animation-iteration-count: 1;
  -o-animation: animationFrames ease 0.3s;
  -o-animation-iteration-count: 1;
}

@keyframes animationFrames {
  0% {
    left:0px;
    top:0px;
    opacity:1;
    transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
  15% {
    left:-25px;
    transform:  rotate(-5deg) ;
  }
  30% {
    left:20px;
    transform:  rotate(3deg) ;
  }
  45% {
    left:-15px;
    transform:  rotate(-3deg) ;
  }
  60% {
    left:10px;
    transform:  rotate(2deg) ;
  }
  75% {
    left:-5px;
    transform:  rotate(-1deg) ;
  }
  100% {
    left:0px;
    top:0px;
    opacity:1;
    transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    left:0px;
    top:0px;
    opacity:1;
    -moz-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
  15% {
    left:-25px;
    -moz-transform:  rotate(-5deg) ;
  }
  30% {
    left:20px;
    -moz-transform:  rotate(3deg) ;
  }
  45% {
    left:-15px;
    -moz-transform:  rotate(-3deg) ;
  }
  60% {
    left:10px;
    -moz-transform:  rotate(2deg) ;
  }
  75% {
    left:-5px;
    -moz-transform:  rotate(-1deg) ;
  }
  100% {
    left:0px;
    top:0px;
    opacity:1;
    -moz-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    left:0px;
    top:0px;
    opacity:1;
    -webkit-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
  15% {
    left:-25px;
    -webkit-transform:  rotate(-5deg) ;
  }
  30% {
    left:20px;
    -webkit-transform:  rotate(3deg) ;
  }
  45% {
    left:-15px;
    -webkit-transform:  rotate(-3deg) ;
  }
  60% {
    left:10px;
    -webkit-transform:  rotate(2deg) ;
  }
  75% {
    left:-5px;
    -webkit-transform:  rotate(-1deg) ;
  }
  100% {
    left:0px;
    top:0px;
    opacity:1;
    -webkit-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
}

@-o-keyframes animationFrames {
  0% {
    left:0px;
    top:0px;
    opacity:1;
    -o-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
  15% {
    left:-25px;
    -o-transform:  rotate(-5deg) ;
  }
  30% {
    left:20px;
    -o-transform:  rotate(3deg) ;
  }
  45% {
    left:-15px;
    -o-transform:  rotate(-3deg) ;
  }
  60% {
    left:10px;
    -o-transform:  rotate(2deg) ;
  }
  75% {
    left:-5px;
    -o-transform:  rotate(-1deg) ;
  }
  100% {
    left:0px;
    top:0px;
    opacity:1;
    -o-transform:  rotate(0deg) scaleX(1) scaleY(1) ;
  }
}
