.toast-out {
    animation: toast-out 0.25s ease-out;
    transform: scale(0.9);
    opacity: 0;
    margin-bottom: -64px;
    transition: margin 250ms ease-out;
}

@keyframes toast-out {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}
