.flash-alert {
    position: fixed;
    animation: 10s notification ease-in-out;
}

@keyframes notification {
    0% {
        
    }
}

.flashes {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.flashes.hide {
    opacity: 0;
}