.widget.fees {
    width: calc(4 * var(--block-width) - var(--base-margin));
    margin: var(--base-margin) var(--base-margin) var(--base-margin) 0;
    flex-grow: 2;
}

.widget.fees > h2 {
    margin-bottom: 12px;
}

.widget.fees > .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-sizing: border-box;
}

.widget.fees > .row.fees {
    margin-bottom: 24px;
}

.widget.fees > .row > .fee-input {
    max-width: 22%;
}

.widget.fees > .row > .field > .title {
    font-size: var(--small-font-size);
    font-family: var(--small-font-family);
    text-transform: uppercase;
    font-weight: bold;
}

.widget.fees > .row > .field > .value {
    font-family: 'Roboto Mono', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.widget.fees > .row > .field > .value > * {
    padding: 3px;
}

.widget.fees > .row > .field > .value > .single:hover,
.widget.fees > .row > .field > .value > .double:hover {
    background-color: var(--hover-color);
    border-radius: 3px;
}

.widget.fees > .row.rates {
    margin: 6px 0;
}