#scaling-factor, #room-input, #furniture-input {
    width: 800px;
    margin-left: 13px;
}
#scaling-factor {
    margin-bottom: 9px;
    margin-top: 3px;
}
#scaling-factor-bar {
    display: inline-block;
    width: 100px;
    height: 5px;
    background-color: #aaaaaa;
}
#scaling-factor-label {
    margin-top: 0px;
    margin-left: 5px;
    font-size: 15px;
    display: inline-block;
}
#room-input {
    display: inline-block;
}
#room-dimensions-add, #furniture-dimensions-add {
    float: right;
    margin: 5px;
    margin-right: 8px;
}

.round {
    position: relative;
}
  
.round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
}

.round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}

.round input[type="checkbox"] {
    visibility: hidden;
}

.round input[type="checkbox"]:checked + label {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.round input[type="checkbox"]:checked + label:after {
    opacity: 1;
}