#toastGroup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
}

.toast-slide-in {
    animation: slide-in 0.5s forwards;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}