@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

.slide-in-from-bottom {
    animation: 1s ease-out 0s 1 slideInFromBottom;
}
