Fade out

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

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman