.tree ul {
  margin: 0;
  padding-left: 25px;
  list-style: none;
  line-height: 2em;
}

.tree ul li {
  position: relative;
}

.tree ul li::before,
.tree ul li::after {
  content: "";
  position: absolute;
  left: -15px;
  border-left: 1px dashed #999;
}

.tree ul li::before {
  top: 0;
  width: 15px;
  height: 1em;
  border-bottom: 1px dashed #999;
}

/* Hide vertical line for first item */
ul.tree > li:first-child::before {
  border-left: none;
}

ul li::after {
  top: 1.1em;
  bottom: 1px;
}

/* Hide lines for last item */
ul li:last-child::after {
  display: none;
}

/* Toggle icon (inserted via JS) */
.js-toggle-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 14px;
  margin: 0 2px 0 -23px;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
  font-style: normal;
  background-color: #fff;
  border: 1px solid #666;
  border-radius: 2px;
  margin-right:10px
}