
.navbar .navbar-brand {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: olivedrab;
}



.global-progress-indicator {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.25);
    z-index: 1090;
}
.global-progress-indicator .spinner-border {
    width: 15vmin;
    height: 15vmin;
    border-width: 2vmin;
}



.item-list .buttons {
    margin-left: .5em;
    display: flex;
}
.item-list .item-desc {
    margin-left: .5em;
    white-space: pre-line;
}
.item-list .item-color {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: .5em;
}



.color-picker {
    display: flex;
}
.color-picker .swatch {
    width: 2em;
    height: 2em;
    border-radius: 2em;
    border: 1px solid transparent;
    margin-right: .25em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.color-picker .swatch:first-child {
    border-color: #aaa;
}
.color-picker .swatch > div {
    width: .75em;
    height: .75em;
    border-radius: .75em;
    background-color: white;
    display: none;
}
.color-picker .swatch:first-child > div {
    background-color: #aaa;
}
.color-picker .swatch.selected > div {
    display: block;
}



.add-dialog .color-picker {
    margin-top: 1em;
}



.edit-dialog .color-picker {
    margin-top: 1em;
}
