.bounce-animation{
  animation: bounceFrames linear 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: bounceFrames linear 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: bounceFrames linear 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: bounceFrames linear 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: bounceFrames linear 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes bounceFrames{
  0% {
    transform:  translate(0px,0px)  ;
  }
  8% {
    transform:  translate(0px,5px)  ;
  }
  13% {
    transform:  translate(0px,-4px)  ;
  }
  18% {
    transform:  translate(0px,5px)  ;
  }
  24% {
    transform:  translate(0px,-4px)  ;
  }
  28% {
    transform:  translate(0px,5px)  ;
  }
  33% {
    transform:  translate(0px,-4px)  ;
  }
  38% {
    transform:  translate(0px,3px)  ;
  }
  43% {
    transform:  translate(0px,0px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes bounceFrames{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  8% {
    -moz-transform:  translate(0px,5px)  ;
  }
  13% {
    -moz-transform:  translate(0px,-4px)  ;
  }
  18% {
    -moz-transform:  translate(0px,5px)  ;
  }
  24% {
    -moz-transform:  translate(0px,-4px)  ;
  }
  28% {
    -moz-transform:  translate(0px,5px)  ;
  }
  33% {
    -moz-transform:  translate(0px,-4px)  ;
  }
  38% {
    -moz-transform:  translate(0px,3px)  ;
  }
  43% {
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes bounceFrames {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  8% {
    -webkit-transform:  translate(0px,5px)  ;
  }
  13% {
    -webkit-transform:  translate(0px,-4px)  ;
  }
  18% {
    -webkit-transform:  translate(0px,5px)  ;
  }
  24% {
    -webkit-transform:  translate(0px,-4px)  ;
  }
  28% {
    -webkit-transform:  translate(0px,5px)  ;
  }
  33% {
    -webkit-transform:  translate(0px,-4px)  ;
  }
  38% {
    -webkit-transform:  translate(0px,3px)  ;
  }
  43% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes bounceFrames {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  8% {
    -o-transform:  translate(0px,5px)  ;
  }
  13% {
    -o-transform:  translate(0px,-4px)  ;
  }
  18% {
    -o-transform:  translate(0px,5px)  ;
  }
  24% {
    -o-transform:  translate(0px,-4px)  ;
  }
  28% {
    -o-transform:  translate(0px,5px)  ;
  }
  33% {
    -o-transform:  translate(0px,-4px)  ;
  }
  38% {
    -o-transform:  translate(0px,3px)  ;
  }
  43% {
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes bounceFrames {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  8% {
    -ms-transform:  translate(0px,5px)  ;
  }
  13% {
    -ms-transform:  translate(0px,-4px)  ;
  }
  18% {
    -ms-transform:  translate(0px,5px)  ;
  }
  24% {
    -ms-transform:  translate(0px,-4px)  ;
  }
  28% {
    -ms-transform:  translate(0px,5px)  ;
  }
  33% {
    -ms-transform:  translate(0px,-4px)  ;
  }
  38% {
    -ms-transform:  translate(0px,3px)  ;
  }
  43% {
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}