<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.snackbar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    box-sizing: border-box;
    padding: 16px 12px;
    border-radius: 6px;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    transition: 0.7s;
    z-index: 9999;

    &amp;.out {
        bottom: -80px;
    }

    &amp;.error {
        background-color: var(--alert);
        color: white;
    }

    &amp;.warning {
        background-color: var(--warning);
        color: white;
    }

    &amp;.success {
        background-color: var(--focus);
        color: white;
    }

    &amp; .status-id {
        box-sizing: border-box;
        padding: 4px 8px;
        border: 1px solid white;
        border-radius: 4px;
        margin-right: 12px;
        font-family: "Oswald", sans-serif;
        font-size: 16px;
        font-weight: 700;
    }

    &amp; .status-message {
        font-family: "Oswald", sans-serif;
        font-size: 14px;
        text-align: left;
    }
}
</pre></body></html>