.segment {
  position: relative;
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;

  .segment__indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    background: #5f5bf3;
    transition:
      left 0.3s ease,
      width 0.3s ease;
    z-index: 0;
    width: 75px;
  }

  .segment__option {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
    width: 75px;

    &:not(:last-child) {
      border-right: 1px solid #ccc;
    }

    &--active {
      color: #fff;
    }
  }
}
