.boows-select-button {
  border-radius: var(--boows-border-radius-button, 6px);
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  justify-content: flex-start;
  background-color: var(--boows-col-text);
  min-height: 40px;
  margin: 10px 0px;
  color: #fff;
}
.disabled .boows-select-button {
  opacity: 0.5;
  cursor: not-allowed;
}
.boows-select-button .boows-select-button-option {
  padding:10px 20px;
  text-align: center;
  border-left: 1px solid var(--boows-col-text-80);
  transition: var(--boows-transition);
  user-select: none;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
}
.disabled .boows-select-button .boows-select-button-option{
  opacity: 0.5;
  cursor: not-allowed;
}
.boows-select-button .boows-select-button-option:first-child {
  border-left:1px solid transparent;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
.boows-select-button .boows-select-button-option:last-child {
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
.boows-select-button .boows-select-button-option.selected + div.boows-select-button-option {
  border-left:1px solid transparent;
}
.boows-select-button .boows-select-button-option.selected {
  background-color: var(--boows-col-primary);
  color:#fff;
  border-left:1px solid transparent;
}
.boows-select-button-dependent {
  display: none;
}
.boows-select-button.error {
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body.boows-rounded .boows-select-button {
  border-radius: var(--boows-border-radius-button, 14px);
}

body.boows-pill .boows-select-button {
  border-radius: var(--boows-default-border-pill, 999px);
}
