Flip out X

global.css
.flip-out-x {
  animation: flip-out-x 0.6s ease-out both;
}

@keyframes flip-out-x {
  0% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: rotateY(90deg);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman