.nv-rema-tools-select-button {
  border-radius: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  justify-content: flex-start;
  background-color:var(--nv-rema-col-main-medium);
  min-height: 40px;
  margin: 10px 0px;
  color: #fff;
}

.nv-rema-tools-select-button.full-width {
  width: 100%;
  justify-content: stretch;
}

.disabled .nv-rema-tools-select-button {
  opacity: 0.5;
  cursor: not-allowed;
}
.nv-rema-tools-select-button .nv-rema-tools-select-button-option {
  padding:10px 20px;
  text-align: center;
  border-left: 1px solid var(--nv-rema-col-gray2);
  transition: var(--nv-rema-transition);
  user-select: none;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  width: max-content;
  justify-content: center;
}
.nv-rema-tools-select-button.full-width .nv-rema-tools-select-button-option {
  width: 100%;
}

.disabled .nv-rema-tools-select-button .nv-rema-tools-select-button-option{
  opacity: 0.5;
  cursor: not-allowed;
}
.nv-rema-tools-select-button .nv-rema-tools-select-button-option:first-child {
  border-left:1px solid transparent;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.nv-rema-tools-select-button .nv-rema-tools-select-button-option.selected + div.nv-rema-tools-select-button-option {
  border-left:1px solid transparent;
}
.nv-rema-tools-select-button .nv-rema-tools-select-button-option.selected {
  background-color: var(--nv-rema-col-main);
  color:#fff;
  border-left:1px solid transparent;
}
.nv-rema-tools-select-button-dependent {
  display: none;
}
.nv-rema-tools-select-button.error {
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.nv-rema-tools-select-button-option.disabled {
  cursor: not-allowed;
  background: var(--nv-rema-col-gray4) !important;
  filter: grayscale(0.8);
  opacity: 0.7;
}

@media (max-width: 567px) {
  .nv-rema-tools-select-button .nv-rema-tools-select-button-option {
    padding:8px 10px;
  }
}