.scale-title-layout {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: end;
}

.scale-title-side {
    display: table;
    flex: 1;
}

.scale-title-side:last-child span {
    text-align: right;
}

.scale-content {
    display: flex;
    width: 100%;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    margin: 3px 0px;
}

.scale-line {
    display: table;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    background-color: var(--color-checkbox-border-modal);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}