.nut-subsidenavbar {
  &__title {
    height: $sidenav-bar-item-height;
    padding: $sidenavbar-sub-title-padding;
    box-sizing: border-box;
    background-color: $sidenavbar-sub-title-background;
    color: $sidenavbar-sub-title-color;
    font-size: $sidenavbar-sub-title-font-size;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  
  &__list {
    &.sidenavbar-show {
      .nut-subsidenavbar__content {
        height: auto;
        overflow: inherit;
      }
    }
    &.sidenavbar-hide {
      .nut-subsidenavbar__content {
        height: 0;
        overflow: hidden;
      }
    }
  }
}

.arrow-custom-down {
  transform: rotate(90deg);
}