Slide out bottom

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

@keyframes slide-out-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman