.multi-state-toggle {
    float: left;
    /*background: #6c757d;*/
    background: #fff;
    color: black;
    cursor: pointer;
}
.multi-state-toggle input {
  position: absolute;
  opacity: 0;
}
.multi-state-toggle input + label {
    padding: 7px;
    float: left;
    color: black;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
/*.switch-toggle input:checked + label:not(.disabled) {
  background: green;
}*/
.multi-state-toggle input:checked + label.disabled {
  background: #2f6dc7;
  color:black;
}

