.nut-tabbar {
  border: 0px;
  box-shadow: $tabbar-box-shadow;
  border-bottom: $tabbar-border-bottom;
  border-top: $tabbar-border-top;
  width: 100%;
  background: $color-background-overlay;

  &-wrap {
    height: $tabbar-height;
    display: flex;

    &-3 {
      padding: 0 16px;
    }

    &-2 {
      padding: 0 32px;
    }

    &-horizontal {
      align-items: center;
      .nut-tabbar-item {
        flex-direction: row;
        justify-content: center;
        .nut-icon {
          width: 20px;
          height: 20px;
        }
        .nut-tabbar-item-text {
          margin: 0 4px 0 6px;
          font-size: 14px;
        }
        .nut-badge-sup {
          &::after {
            border: 0;
          }
        }
      }
    }
  }

  &-fixed {
    position: fixed;
    bottom: 0px;
    left: 0px;
  }
}

[dir='rtl'] .nut-tabbar,
.nut-rtl .nut-tabbar {
  &:last-child {
    border-right: none;
    border-left: 0;
  }

  &-fixed {
    left: auto;
    right: 0px;
  }
}
