.aos-tabs {
  height: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
  margin: 0 8px;
  &__container {
    display: flex;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
  }
  &__item {
    height: 100%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    box-sizing: content-box;
    cursor: pointer;
    border-bottom: 2px solid #ffffff;
    color: #999999;
    &--active {
      color: #0092FF;
      border-bottom: 2px solid #0092FF;
    }
    &-icon {
      margin-right: 8px;
    }
  }
  &__item:first-child {
    margin-left: 0px !important;
  }
  &__item:last-child {
    margin-right: 0px !important;
  }
}