.control.header-block {
    flex: none;
    display: flex;
    flex-direction: row;
    padding: 0 12px;
    align-items: center;
    border: none;
    background: transparent;
    height: 100%;
}

.control.header-block:first-of-type {
    border-width: 0 1px 0 1px;
}

.control.header-block.clickable {
    transition: background .2s;
}

.control.header-block.clickable:hover {
    background: rgba(0, 0, 0, .1);
}

.control.header-block.hidden {
    display: none;
}

.control.header-block .icon {
    width: 0;
    height: 0;
    background-size: 32px 32px;
    background-position: center;
    background-repeat: no-repeat;
}

.control.header-block .icon.iconic {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.control.header-block .body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.control.header-block .body .title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
}

.control.header-block .body .value {
    font-size: 12px;
    font-family: 'Roboto Mono', monospace;
    user-select: text;
}