.NoteEditorStatusPopup {
    pointer-events: all;
    display: inline-block;
    margin: 5px;
    /*overflow: hidden;*/
    line-height: 32px;
    height: 32px !important;
    border-radius: calc(var(--NoteEditor_borderRadius) - 5px);
    padding: 10px;
    box-sizing: content-box;

    @media (prefers-color-scheme: light) {
        background: #FFFFFFEF;
    }
    @media (prefers-color-scheme: dark) {
        background: #35373BEF;
    }
}

.NoteEditorToolbar_statusIcon {
    width: 32px !important;
    line-height: 32px !important;
    height: 32px !important;
    vertical-align: center;
    border: none;
    background: transparent;
    padding: 0;
    color: lightgray;
    display: inline-block;
    font-size: 32px;
    margin: 0 !important;
}

.NoteEditorToolbar_savedIcon {
    transition-property: opacity, width;
    transition-duration: 1s;
    animation: NoteEditorToolbar_savedIconAnimation 1000s;
    overflow: clip;
}

.NoteEditorToolbar_statusIcon *, .NoteEditorToolbar_statusIcon *::before {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 32px !important;
    padding: 0;
}


.NoteEditorToolbar_savingIcon {
    color: lightgray;
    display: inline-block;
    filter: grayscale(100%);
    margin: 0 !important;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    width: auto;
    animation: NoteEditorToolbar_savingIconAnimation 2s infinite;
}

@keyframes NoteEditorToolbar_savingIconAnimation {
    0% {
        opacity: 0.125;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.125;
    }
}

@keyframes NoteEditorToolbar_savedIconAnimation {
    0% {
        opacity: 0.25;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.NoteEditorToolbar_errorIcon {
    display: inline-block;
    margin: 0 !important;
    transition-property: opacity, width;
    transition-duration: 1s;
    opacity: 1 !important;
    width: auto;
}

.NoteEditorToolbar_errorIcon * {
    color: orangered !important;
}
