.settings {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    font-family: 'Source Sans Pro';
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.settings .field:first-child {
    padding-right: 30px;
}

.settings .field select {
    border-radius: 4px;
    padding: 3px;
}


.settings .field select:focus {
    outline: none;
}

.checkbox {
    margin-left: 13px;
    color: rgba(220, 17, 20, 1.000);
}
.checkbox.checkbox-kkw {
    color: rgb(85, 166, 209);
}
.checkbox.checkbox-quali {
    color: rgba(33, 204, 62, 1.000);
}
.checkbox.checkbox-rest {
    color: rgba(180, 86, 247, 1.000);
}

.subtext {
    font-size: 12px;
    text-align: center;
    font-family: 'Source Sans Pro';
}

@media only screen and (max-width: 600px) {
    .settings {
        display: block;
    }
    .settings .field {
        margin-bottom: 10px;
    }
    .settings .field label {
        display: inline-block;
        width:150px;
        text-align: right;
    }
}

