@keyframes play48 {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -7200px 0px;
  }
}
.shapeshifter {
  animation-duration: 800ms;
  animation-timing-function: steps(48);
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-size:cover;
}
.shapeshifter.play {
  animation-name: play48;
  animation-iteration-count: infinite;
}
