﻿.fade-out {
    animation: fade-out 3s forwards;
}
.hide-instantly {
    opacity: 0;
    visibility: hidden;
}
.red-label {
    color: red;
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
