.animation {
  transition: all 300ms ease;
}
.animation.show {
  transform: none;
}

@keyframes tap {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: scale(1) rotate(30deg);
  }
  60% {
    transform: scale(1) rotate(0deg);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tap {
  animation-name: tap;
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

@keyframes turn_more {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(0.8) rotate(60deg);
  }
  90% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.turn_more {
  animation-name: turn_more;
  animation-duration: 800ms;
  animation-delay: 300ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

@keyframes stamp {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: scale(0.8) rotate(-45deg);
  }
  51% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    transform: scale(1.2) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.stamp {
  animation-name: stamp;
  animation-duration: 1200ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

@keyframes turn_l {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: scale(0.8) rotate(45deg);
  }
  51% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: scale(1.3) rotate(15deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.turn_left {
  animation-name: turn_l;
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

@keyframes turn_r {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: scale(0.8) rotate(-45deg);
  }
  51% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: scale(1.3) rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.turn_right {
  animation-name: turn_r;
  animation-duration: 800ms;
  animation-delay: 200ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
