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

.widget.instrument > .caption {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
}

.widget.instrument > .caption > .title {
    font-size: 1.2em;
}

.widget.instrument > .caption > .subtitle {
    font-size: 0.6em;
}

.widget.instrument > .instrument {
    flex-grow: 2;
}

.widget.instrument > .instrument > * {
    width: 100%;
}

.widget.instrument > .badges {
    margin: 0 0 0 16px;
}

.channel-selector-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.channel-selector-item > .title {
    flex-grow: 2;
}

.channel-selector-item > .type {
    font-size: 0.7em;
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.channel-selector-item.quanto > .type {
    background-color: rgba(6, 105, 224, 0.1);
}

.channel-selector-item.linear > .type {
    background-color: rgba(13, 224, 6, 0.1);
}

.channel-selector-item.inverse > .type {
    background-color: rgba(224, 6, 188, 0.1);
}

.channel-selector-item.pool > .type {
    background-color: rgba(255, 69, 0, 0.1);
}