ui-segment-button {
  display: table-cell;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  color: $color-primary;
  padding: $form-control-padding-vertical 1em;
  min-width: 100px;
  border: 1px solid $color-primary;
  transition: all ease-in-out .15s;

  &:not(:first-of-type) {
    border-left-width: 0;
  }

  &:first-of-type {
    border-radius: 4px 0 0 4px;
  }

  &:last-of-type {
    border-radius: 0 4px 4px 0;
  }

  &.ui-selected {
    background-color: $color-primary;
    color: #fff;
  }
}
