.cdk-tree > .cdk-nested-tree-node {
  padding-left: 0;
  &:before,
  &:after {
    display: none;
  }
}

.cdk-tree-node {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cdk-nested-tree-node {
  position: relative;
  padding-left: 16px;
  &:before {
    position: absolute;
    top: 0;
    bottom: 1px;
    left: 7px;
    border-left: 1px dotted @gray-80;
    content: '';
  }
  &:after {
    position: absolute;
    top: 10px;
    left: 7px;
    width: 10px;
    border-top: 1px dotted @gray-80;
    content: '';
  }
  > span {
    &:before {
      content: '';

      .dlt-c8y-icon();
    }
  }
  > button + span:before {
    display: none;
  }
}

.cdk-tree-node-toggle {
  cursor: pointer;
  > [class^='dlt-c8y-icon-'],
  > [class*=' dlt-c8y-icon-'] {
    margin-right: @margin-4;
    color: @brand-primary;
  }
}
