.widget.balancing {
    width: calc(16 * var(--block-width));
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 13px;
}

.widget.balancing > h2 {
    margin: 16px;
}

.widget.balancing .blk > .title {
    margin-right: 16px;
}

.widget.balancing .flag {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    width: 54px;
    flex: none;
    font-size: .7em;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 12px;
    margin: 16px 24px;
    background: silver;
}

.widget.balancing .flag.green {
    color: #fff;
    background: green;
}

.widget.balancing .flag.orange {
    color: #fff;
    background: darkorange;
}

.widget.balancing .threshold {
    width: 90px;
}

.widget.balancing .if_vault .threshold {
    width: 150px;
}

.widget.balancing .unibadge.reserve {
    width: 150px;
    flex: none;
}

.widget.balancing .uniformula {
    flex: none;
    margin: 0 12px;
}

.widget.balancing > .na {
    flex-grow: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: gray;
    text-transform: uppercase;
}

.widget.balancing > .blk {
    display: none;
    transition: background-color .2s;
    padding: 0 16px;
    justify-self: stretch;
    align-self: stretch;
}

.widget.balancing > .blk.visible {
    display: flex;
}

.widget.balancing > .blk:hover {
    background: rgba(240, 240, 240, 0.75);
}

.widget.balancing > .blk > .title {
    font-weight: 500;
}

.widget.balancing > .blk.margin_health > .threshold {
    margin-left: 24px;
}

.widget.balancing > .blk.margin_health > .min,
.widget.balancing > .blk.margin_health > .max,
.widget.balancing > .blk.margin_health > .cur
{
    width: 80px;
}