.multiButton {
  white-space: nowrap;
}

.multiButton input {
  display: none;
}

/* IE8 bug: cannot trigger hidden input change */
.ie.vr_8 .multiButton input {
  display: block;
  position: absolute;
  width: 0;
  padding: 0;
  margin: 0;
}

.multiButton label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #4d4d4d;
  text-transform: uppercase;
  background-color: #e6e6e6;
  padding: 3px 6px 1px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.multiButton label:first-of-type {
  border-radius: 5px 0 0 5px;
}

.multiButton label:last-of-type {
  border-radius: 0 5px 5px 0;
}

.multiButton.disabled label {
  background-color: #b3b3b3;
  color: #fff;
  cursor: default;
}

.multiButton label.selected {
  background-color: #129cdd;
  color: #fff;
}