.widget.adjustment {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(13 * var(--block-width) - var(--base-margin));
    margin: var(--base-margin);
    padding: 0;
}

.widget.adjustment.adjustment_c {
    width: calc(16 * var(--block-width));
}

.widget.adjustment > .caption {
    align-items: flex-start;
    margin: 16px;
    width: 150px;
}

.widget.adjustment > .caption > .status {
    font-size: 12px;
    margin-top: 4px;
}

.widget.adjustment .holder.delay {
    width: 80px;
    margin-right: 12px;
}

.widget.adjustment .holder.timer {
    width: 100px;
}

.widget.adjustment .holder.min_nt {
    width: 120px;
}

.widget.adjustment .holder.max_nt {
    width: 120px;
}

.widget.adjustment .holder.max_block {
    width: 120px;
}

.widget.adjustment .holder.order_type {
    width: 120px;
}

.widget.adjustment .holder.attempts_limit {
    width: 80px;
}

.widget.adjustment .holder.total_limit {
    width: 80px;
    margin: 0 12px;
}

.widget.adjustment .counters_one {
    align-items: stretch;
}

.widget.adjustment .counters_two {
    margin: 0 12px;
    align-items: stretch;
}

.widget.adjustment > .counters {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: .8em;
}

.widget.adjustment > .counters > .line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2px 6px;
    border-radius: 3px;
    transition: background .2s;
}

.widget.adjustment > .counters > .line:hover {
    background: var(--list-line-background-color);
}

.widget.adjustment > .counters > .line > .title {
    margin-right: 6px;
}

.widget.adjustment > .counters > .line > .value {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 6px;
}