div[data-angular-treeview] {
  /* prevent user selection */
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* default */
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
}

div[data-tree-model] ul {
  margin: 5px 0px;
  padding: 0;
  list-style: none; 
  border: none;
  overflow: hidden;
}

div[data-tree-model] li {
  position: relative;
  padding: 10px 0 0 50px;
  line-height: 20px;
}

div[data-tree-model] li .expanded {
  padding: 0px 15px;
  background-image: url("../img/caret-down-square.svg");
  background-repeat: no-repeat;
}

div[data-tree-model] li .collapsed {
  padding: 0px 15px;
  background-image: url("../img/caret-right-square-fill.svg");
  background-repeat: no-repeat;
}

div[data-tree-model] li .normal {
  padding: 0px 15px;
  background-image: url("../img/record.svg");
  background-repeat: no-repeat;
}

div[data-tree-model] li i, div[data-tree-model] li span {
  cursor: pointer;
}

div[data-tree-model] li .selected {
  background-color: #000;
  font-weight: bold;
  padding: 2px 5px;
}