/* =========================================================
   FLASH MESSAGES
========================================================= */
.flash-messages {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(420px, calc(100vw - 2rem));
    pointer-events: none;
}

.flash-message {
    margin: 0;
    border: 0;
    border-radius: 0.8rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
}

@media (max-width: 575.98px) {

    .flash-messages {
        top: 0.75rem;
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
    }

}