.nut-elevator {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  &__list {
    display: block;
    position: relative;
    //top: 1px;
    overflow: hidden;
    &__inner {
      height: 100%;
      width: 100%;
      display: block;
      background-color: $elevator-list-inner-bg-color;
      overflow: auto;
    }
    &__item {
      display: block;
      font-size: $elevator-list-item-font-size;
      color: $elevator-list-item-font-color;
      &__code {
        display: flex;
        align-items: center;
        position: relative;
        height: $elevator-list-item-code-height;
        line-height: $elevator-list-item-code-line-height;
        font-size: $elevator-list-item-code-font-size;
        color: $elevator-list-item-code-font-color;
        padding: $elevator-list-item-code-padding;
        font-weight: $elevator-list-item-code-font-weight;
        box-sizing: border-box;
        border-bottom: $elevator-list-item-code-border-bottom solid
          $elevator-list-item-code-border-bottom-color;
        background: $elevator-list-item-code-background;
        &--active {
          font-weight: $elevator-list-item-code-active-font-weight;
          color: $elevator-list-item-code-font-active-color;
        }
      }
      &__name {
        position: relative;
        //display: flex;
        align-items: center;
        font-size: $elevator-list-item-name-font-size;
        color: $elevator-list-item-name-color;
        padding: $elevator-list-item-name-padding;
        height: $elevator-list-item-name-height;
        line-height: $elevator-list-item-name-line-height;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        &--highcolor {
          color: $elevator-list-item-highcolor;
        }
        &--divider {
          position: absolute;
          bottom: 0px;
          left: $elevator-list-item-name-divider-left;
          right: $elevator-list-item-name-divider-right;
          height: 1px;
          background: $elevator-list-item-name-divider-color;
          transform: scaleY(0.5);
        }
      }
    }
    &__fixed {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      padding: $elevator-list-item-code-padding;
      height: $elevator-list-item-code-height;
      line-height: $elevator-list-item-code-line-height;
      font-size: $elevator-list-item-code-font-size;
      color: $elevator-list-fixed-color;
      font-weight: $elevator-list-item-code-active-font-weight;
      background-color: $elevator-list-fixed-bg-color;
      box-sizing: border-box;
      box-shadow: $elevator-list-fixed-box-shadow;
    }
  }
  &__code--current {
    position: $elevator-list-item-code-current-position;
    right: $elevator-list-item-code-current-right;
    top: $elevator-list-item-code-current-top;
    transform: $elevator-list-item-code-current-transform;
    width: $elevator-list-item-code-current-width;
    height: $elevator-list-item-code-current-height;
    line-height: $elevator-list-item-code-current-line-height;
    font-size: $elevator-list-item-code-current-font-size;
    font-weight: $elevator-list-item-code-current-font-weight;
    border-radius: $elevator-list-item-code-current-border-radius;
    color: $elevator-list-item-code-current-color;
    background: $elevator-list-item-code-current-bg-color;
    box-shadow: $elevator-list-item-code-current-box-shadow;
    text-align: $elevator-list-item-code-current-text-align;
    .nut-icon {
      font-size: $elevator-list-item-code-current-icon-size !important;
      width: $elevator-list-item-code-current-icon-size !important;
      height: $elevator-list-item-code-current-icon-size !important;
    }
  }
  &__bars {
    position: $elevator-list-item-bars-position;
    right: $elevator-list-item-bars-right;
    top: $elevator-list-item-bars-top;
    transform: $elevator-list-item-bars-transform;
    width: $elevator-list-item-bars-width;
    padding: $elevator-list-item-bars-padding;
    background-color: $elevator-list-item-bars-background-color;
    border-radius: $elevator-list-item-bars-border-radius;
    text-align: $elevator-list-item-bars-text-align;
    z-index: $elevator-list-item-bars-z-index;
    &__inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      &__item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: $elevator-list-item-bars-inner-item-width;
        height: $elevator-list-item-bars-inner-item-height;
        line-height: $elevator-list-item-bars-inner-item-height;
        padding: $elevator-list-item-bars-inner-item-padding;
        font-size: $elevator-list-item-bars-inner-item-font-size;
        color: $elevator-list-item-bars-inner-item-color;
        border-radius: $elevator-list-item-bars-inner-item-border-radius;
        background-color: $elevator-list-item-bars-inner-item-background-color;
        cursor: pointer;
        &--active {
          color: $elevator-list-item-bars-inner-item-active-color;
          background-color: $elevator-list-item-bars-inner-item-active-background-color;
        }
        &--large {
          width: $elevator-list-item-bars-inner-item-width-large;
          border-radius: $elevator-list-item-bars-inner-item-border-radius-large;
          font-size: $elevator-list-item-bars-inner-item-font-size-small;
        }
        &--large-fix {
          transform: scale(0.83333);
        }

      }
    }
  }
}
