@sidebarSubOptionSelector: cr-sidebar-sub-option;

.@{sidebarSubOptionSelector} {
  position: relative;
  display: block;
  padding: 0 12px 0 2px;
  margin: 0;

  &--disabled {
    opacity: 0.3;
    cursor: none;
    pointer-events: none;
  }

  &__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 10px;

    &--collapsed label {
      opacity: 0;
      z-index: -1;
      transition: 0.3s;
    }

    &:hover,
    &--active {
      background-image: linear-gradient(92deg, #fff8f5 0%, #fff7fb 100%);
      border-radius: 10px;
    }
  }

  &__icon {
    cursor: pointer;
    line-height: 22px;
    font-size: 22px;
    width: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  &__label {
    opacity: 1;
    z-index: 1;
    transition: 0.3s;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #2C3B38;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 700;
    &--active {
      color: #050530
    }
  }

  &__inner-content {
    display: flex;
    align-items: center;
    gap: 2px;
  }
}
