@keyframes play216 {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.shapeshifter {
background-image: var(--storedshape);
animation-duration: 3600ms;
  animation-timing-function: steps(216);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 0;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding-bottom: 100%;
}

.shapeshifter.play {
  animation-name: play216;
}

