div[data-angular-treeview] {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: inherit;
    font-size: 14px;
    color: #555;
    text-decoration: none
}

div[data-tree-model] ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    overflow: hidden
}

div[data-tree-model] li {
    position: relative;
    padding: 0 0 0 20px;
    line-height: 30px
}

div[data-tree-model] li .fa-folder {
    padding-right: 5px;
    color: #1a99f6
}

div[data-tree-model] li .fa-folder-open {
    padding-right: 5px;
    color: #1a99f6
}

div[data-tree-model] li .expanded {
    padding: 1px 10px;
    background-image: url(img/folder.png);
    background-repeat: no-repeat
}

div[data-tree-model] li .collapsed {
    padding: 1px 10px;
    background-image: url(img/folder-closed.png);
    background-repeat: no-repeat
}

div[data-tree-model] li .normal {
    padding: 1px 10px;
    background-image: url(img/file.png);
    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: #adf;
    font-weight: 700;
    padding: 1px 5px
}