/* Fade out for alert */ .fade-out { animation: fadeOut 0.75s forwards; } @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }