.l-sidebar-panel {
  &__divider {
    border-bottom: 1px solid color-palette(gray, 40);
    height: 1px;
  }

  &__info-text {
    align-items: flex-start;
    display: flex;
    flex-direction: center;
    justify-content: center;
  }

  &__title-bar {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  &__collapse-button {
    align-items: center;
    border-top: 1px solid color-palette(gray, 40);
    bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 280px;

    &--collapsed {
      border-top: 1px solid transparent;
      bottom: 0;
      top: 0;
      width: 40px;
    }

    &__icon {
      color: color-palette(orange, 60);

      &--collapsed {
        transform: rotate(180deg);
      }
    }

    &__content {
      color: color-palette(gray, 70);
      font-size: 13px;
      font-weight: 600;
      line-height: 16px;

      &--collapsed {
        display: none;
      }
    }
  }

  &__header {
    color: color-palette(gray, 80);
    font-size: 16px;
    line-height: 21px;
  }

  &__header-action {
    color: color-palette(orange, 60);
    cursor: pointer;
    font-size: 13px;
    line-height: 15px;
  }

  &__header-info-text {
    color: color-palette(gray, 70);
    cursor: pointer;
    font-size: 13px;
    line-height: 16px;
  }

  &__menu {
    list-style: none;

    &__item {
      align-items: center;
      color: color-palette(gray, 70);
      cursor: pointer;
      display: flex;
      font-size: 13px;
      line-height: 16px;
      position: relative;
      transition: all 0.2s ease-in-out;

      &:before {
        background-color: color-palette(orange, 60);
        bottom: 0;
        content: "";
        opacity: 0;
        position: absolute;
        top: 0;
        transition: opacity 0.2s ease-in-out;
        width: 5px;
      }

      &:hover {
        background-color: color-palette(gray, 40);
        color: color-palette(gray, 90);
      }

      &--active,
      &:active,
      &:hover {
        &:before {
          opacity: 1;
        }
      }
    }
  }
}
