.control.counter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3px 6px;
    border-radius: 3px;
    transition: background .2s;
    font-size: .7em;
    text-transform: uppercase;
    font-weight: 600;
}

.control.counter:hover {
    background: rgba(0, 0, 0, 0.1);
}

.control.counter > .value {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 6px;
    background: var(--list-line-background-color);
    border-radius: 3px;
    padding: 2px 6px;
    font-family: 'Roboto Mono', monospace;
}

.control.counter:hover > .value {
    background: #fff;
}