/************************* FILE TREE ***************************************/
 .file-tree .file-tree-heading {
     margin: 0 0 .5rem;
}
 .file-tree .tree-item-folder[aria-selected="true"] > span, .file-tree .tree-item-doc[aria-selected="true"] a {
     background-color: #202b37;
     color: #eac744;
}
 .file-tree a {
     color: #395E78;
}
 .file-tree a:hover {
     border-color: transparent;
}
 .file-tree .tree-item-doc:focus-visible a {
     background-color: #202b37;
     color: #fff;
}
 .file-tree ul, .file-tree li {
     list-style-type: none;
}
 .file-tree li {
     cursor: pointer;
}
 .file-tree .tree-item-folder > span:hover, .file-tree .tree-item-doc a:hover {
     background-color: #202b37;
     color: #fff;
}
 .file-tree li.tree-item-folder[aria-selected="true"]:focus-visible, .file-tree li.tree-item-folder:focus-visible, .file-tree [tabindex="-1"]:focus:not(:focus-visible) {
     outline: 3px solid #000 !important;
}
 .file-tree .tree-item-folder {
     margin-bottom: .625rem;
     margin-top: .625rem;
     padding-left: .75rem;
}
 .file-tree .folder-contents {
     padding-left: 1.875rem;
     border-left: 1px solid #ddd;
}
 .file-tree .folder-contents .btn-block {
     margin-top: 0;
}
 .file-tree .btn-block:focus {
     box-shadow: none;
}
 .file-tree .folder:before, .file-tree a:before {
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     margin-right: .3125rem;
}
/* closed folder */
 .file-tree .folder[aria-expanded="false"]:before {
     content: "\f07b";
}
/* open folder */
 .file-tree .folder[aria-expanded="true"]:before {
     content: "\f07c";
}
/* default file link */
 .file-tree a:before {
     content: "\f15c";
}
 .file-tree a[href$=".pdf"]:before {
     content: "\f1c1";
}
 .file-tree a[href$=".mp4"]:before {
     content: "\f1c8";
}
 .file-tree a[href$=".png"]:before, .file-tree a[href$=".jpg"]:before {
     content: "\f1c5";
}
 .file-tree a[href$=".doc"]:before, .file-tree a[href$=".docx"]:before {
     content: "\f1c2";
}
 .file-tree a[href$=".ppt"]:before, .file-tree a[href$=".pptx"]:before {
     content: "\f1c4";
}
 .file-tree a[href$=".xls"]:before, .file-tree a[href$=".xlsx"]:before {
     content: "\f1c3";
}