.widget.nt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    margin: var(--base-margin);
    width: calc(5 * var(--block-width) - var(--base-margin) * 2);
}

.widget.nt > .caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.widget.nt > .caption > .letter {
    font-size: 1.2em;
    font-weight: 600;
}

.widget.nt > .caption > .subtitle {
    font-size: 0.6em;
    font-weight: 600;
}

.widget.nt > .formula {
    flex-grow: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.widget.nt.green {
    background: rgba(0, 128, 0, 0.15);
}

.widget.nt.orange {
    background: rgba(230, 159, 1, 0.3);
}

.widget.nt.red {
    background: rgba(128, 0, 0, 0.15);
}

.widget.nt > .unirow {
    width: 100%;
}

.widget.nt .field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 6px;
}

.widget.nt .field > .val {
    text-align: center;
    font-family: 'Roboto Mono', monospace;
}

.widget.nt .field > .title {
    font-size: 8pt;
    text-transform: uppercase;
    text-align: center;
}