.flash-message-container {
    width: 100vw;
    overflow: visible;
    /*background: rgba(255,255,255,0.2);*/
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    z-index: 11;
    pointer-events: none;
    padding: 20px 0 0 0;
}
.flash-message {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 380px;
    max-width: calc(100dvw - 56px);
    background: var(--opaque-green);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: var(--white);
    gap: 0 12px;
    padding: 12px 24px;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    transition: all 1s ease-in-out;
    overflow: hidden;
    opacity: 0;
    margin: -16px 0 8px 0;
}
.flash-message-icon {
    font-family: 'Material Symbols Rounded', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: var(--theme-midnight);
}
.flash-message-status {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--theme-midnight);
}
.flash-message-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--theme-midnight);
    width: 100%;
    margin: 0 0 0 46px;
}