/* Font-independent editorial status symbols backed by Bootstrap Icons.
 * Only the three SVGs MiniVibe currently uses are vendored locally. The icons
 * are applied as masks so their color remains controlled by MiniVibe CSS and
 * rendering never depends on an installed emoji/icon font.
 * Source: twbs/icons@6945b7006285d444cc17ff2e22c7691719229526 (MIT). */

.mv-status-symbol {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.18em;
    flex: 0 0 auto;
    background-color: currentColor;
    -webkit-mask-image: var(--mv-status-icon);
    mask-image: var(--mv-status-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.mv-status-symbol--yes {
    --mv-status-icon: url("../icons/bootstrap/check-circle-fill.svg");
    color: #16834b;
}

.mv-status-symbol--no {
    --mv-status-icon: url("../icons/bootstrap/x-circle-fill.svg");
    color: #c53c43;
}

.mv-status-symbol--varies {
    --mv-status-icon: url("../icons/bootstrap/dash-circle-fill.svg");
    color: #d29a18;
}

.mv-table-wrap .mv-status-symbol {
    width: 1.30em;
    height: 1.30em;
    vertical-align: -0.22em;
}
