.widget.result {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    margin: var(--base-margin);
    width: calc(20 * var(--base-width) - 2 * var(--base-margin));
    padding: 0;
    border: none;
    min-height: 84px;
}

.widget.result > .center {
    background: royalblue;
    min-width: 200px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    color: #fff;
    flex: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.widget.result > .center.loss {
    background: #831424;
}

.widget.result > .center.profit {
    background: #04a149;
}

.widget.result > .center .control.unibadge {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.widget.result > .center .control.unibadge {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.widget.result > .center > .top > .control.unibadge > .title {
    font-size: 12px;
    text-align: center;
}

.widget.result > .center > .top > .control.unibadge > .value {
    font-size: 16px;
}

.widget.result > .center > .bottom .control.unibadge > .title {
    font-size: 8px;
}

.widget.result > .center > .bottom .control.unibadge > .value {
    font-size: 10px;
}

.widget.result > .side {
    flex-grow: 2;
    display: flex;
    flex-direction: row;
    width: 40%;
    padding: 0 16px;
    justify-content: space-evenly;
}