.hffiletree {
    --gutter: 10px;
    --icon-dimensions: 20px;
}

.hffiletree ul {
    list-style-type: none;
    margin-left: 0;
}
.hffiletree ul ul {
    margin-top: 0;
}
.hffiletree ul li {
    padding: 5px 0;
}

.hffiletree li.folder > .icon-folder > p.text {
    font-weight: 700;
}
.hffiletree li.folder:before {
    display: inline-block;
    float: left;
    width: var(--icon-dimensions);
    height: var(--icon-dimensions);
    margin-right: var(--gutter);
    content: url(/typo3conf/ext/hffiletree/Resources/Public/gui/folder.svg);
    margin-top: 7px;
    z-index: 1;
    position: relative;
    margin-left: var(--gutter);
}
.hffiletree .icon-folder {
    display: block;
    position: relative;
    cursor: pointer;
    background: #ededed;
}

.hffiletree .icon-folder + ul {
    display: none;
    padding-left: var(--gutter);
}

.hffiletree .icon-folder.icon-folder-open,
.hffiletree .folder:hover .icon-folder {
    background-color: #9ACC0D;
    transition: background-color .2s;
}
.hffiletree .icon-folder:before,
.hffiletree .icon-folder:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #000000;
    width: var(--icon-dimensions);
    height: 2px;
    transition: transform 150ms;
    transform: rotate(0);
    top: 16px;
    right: var(--gutter);
}
.hffiletree .icon-folder:after {
    transform: rotate(90deg);
}
.hffiletree .icon-folder .text {
    color: #000000;
    font-size: 19px;
    line-height: 32px;
    font-family: tondo, sans-serif, Arial, Helvetica, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 3px;
}
.hffiletree .icon-folder > span.text {
    display: block;
}
.hffiletree .icon-folder-open:before {
    transform: rotate(135deg);
}
.hffiletree .icon-folder-open:after {
    transform: rotate(45deg);
}
.hffiletree .fileicon {
    font-family: "hfThemesIcons" !important;
}
.hffiletree p.description {
    margin-left: 46px;
    font-weight: 200;
}
.hffiletree span.moddate {
    font-size: 17px;
    font-weight: 200;
    position: absolute;
    right: 80px;
}

@media only screen and (max-width: 600px) {
    span.moddate {
        display: none;
    }
}
@media only screen and (max-width: 1020px) {
    p.description {
        margin-left: 33px;
    }
}
