.flash {
    position: fixed;
    display: flex;
    z-index: 12000000000;
    background-color: mediumseagreen;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--boxShadow);
    border-radius: var(--radius);

    .flash-text {
        padding: 0.5rem;
        display: flex;
        align-items: center;
    }

    .flash-close {
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: unset;
        border-bottom-right-radius: unset;
        border-bottom-right-radius: var(--radius);
        border-top-right-radius: var(--radius);
    }

    .flash-success {
        background: #e6ffed;
        border: 1px solid #2ecc71;
    }

    .flash-error {
        background: #ffe6e6;
        border: 1px solid #e74c3c;
    }
}
