app-message {
    position: fixed;
    width: 25vw;
    height: auto;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    box-sizing: border-box;
}

app-message > div {
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 255;
    padding: 1rem;
    font-size: 1.5rem;
    color: white;
    margin: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

app-message > div.ok {
    border: 2px solid var(--global--color-sw-green);
    color: var(--global--color-sw-green);
}

app-message > div.warning {
    border: 2px solid var(--global--color-sw-yellow);
    color: var(--global--color-sw-yellow);
}

app-message > div.error {
    border: 2px solid var(--global--color-sw-red);
    color: var(--global--color-sw-red);
}

app-message > div > i {
    font-size: 3rem;
    padding-bottom: 1rem;
}
