#scale{
    /* background: #a33e; */
    position: fixed;

    bottom: 72px;
    left: 140px;

    width: 120px;
    height: 44px;

    user-select: none;
    opacity: 0.85; 
    font-family: "Quicksand", sans-serif;
    font-size: 14px;
}

#scale-text {
    /* background-color: aqua; */
    position: absolute;

    display: flex; 
    justify-content: space-between; 
    align-items: center;

    left: -2%;
    width: 106%;

    line-height: 1;
}

#scale-line {
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
}


#scale-line div{
    height: 6px;
    width: 50%;
    background: black;
    flex: 1;
}

#scale-line div:first-child {
    margin-top: 6px;
}