.#{$CLASS_PREFIX}-tabs {
  display: flex;
  width: 100%;
  position: relative;
}

.#{$CLASS_PREFIX}-tabs-underline {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}

.#{$CLASS_PREFIX}-tab--outer {
  display: flex;
  align-items: center;
}

.#{$CLASS_PREFIX}-tab {
  display: flex;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  padding: 12px 15px;

  &:hover {
    color: #40a9ff;
  }
  &:active {
    color: #096dd9;
  }

  &.active {
    border-bottom: 2px solid #142f8f;
    font-weight: 500;
    color: #142f8f;
  }
  &.disabled {
    color: #bfbfbf;
    pointer-events: none;
    cursor: not-allowed;
  }
  &.small {
    padding: 8px 15px;
  }
  &.large {
    padding: 16px 17px;
  }

  .#{$CLASS_PREFIX}-icon {
    margin-right: 8px;
  }
}

.#{$CLASS_PREFIX}-tab--pane {
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 4px;

  &.active {
    background: white;
    border-bottom: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.#{$CLASS_PREFIX}-tab--pane + .#{$CLASS_PREFIX}-tab--pane {
  margin-left: 2px;
}
