.fileTree {
  position: relative;
  background: white;
  padding: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
}
.fileTree span {
  font-size: 8px;
  font-style: italic;
  letter-spacing: 0.4px;
  color: #a8a8a8;
}
.fileTree .fa-folder-open,
.fileTree .fa-folder,
.fileTree .fa-bettercotton {
  color: var(--main-color);
}
.fileTree ul {
  padding-left: 0;
  list-style: none;
}
.fileTree ul li {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 32px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fileTree ul li i {
  font-size: 24px;
  padding: 4px;
  color: var(--tertiary-color);
}
.fileTree ul li:before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 32px;
  height: 3px;
  margin: auto;
  content: "";
  background-color: var(--side-color);
}
.fileTree ul li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  background-color: var(--side-color);
}
.fileTree ul li:last-child:after {
  height: 16px;
}
.fileTree ul a {
  cursor: pointer;
}
.fileTree ul a:hover {
  text-decoration: none;
}
@media screen and (max-width: 992px) {
}
