.gdv-animated-picture {
    display: block;
    width: %IMAGE_WIDTH%px;
    height: %IMAGE_HEIGHT%px;
    margin:0 auto;
    background: url("%ANIMATED_DATA%") 0 0 no-repeat;
    animation: gdv-like-gif steps(%IMAGE_FRAMES_COUNT%) 1s infinite both;
}
.gdv-pause {
    animation-play-state: paused;
}

#gdvPauseBtn
{
   margin: 10px;
   height: 28px;
}

div {
  width:100px;
  margin:0 auto;
  text-align:center;
}

@keyframes gdv-like-gif {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -%END_WIDTH%px;
  }
}