.notification-out {
    animation: notificationOut 500ms forwards;
}

@keyframes notificationOut {
    to {
        transform: translateX(150%);
    }
}