.folders-list {
    padding-left: 20px;
    border-left: 1px solid black;
    margin-top: 10px;
}
.file-manager .legend {
    font-size:13px;
}
    .file-manager .legend i.final {
        color: rgba(24, 109, 24, 0.582);
    }

.file-manager .document-category-btns {
    display:flex;
    margin:0px 0px 15px 0px;
    justify-content:space-between;
    text-align:right;
}

.file-manager .document-category-btns ul li {
    margin: 0px 0px 5px 0px;
}

.file-manager .document-category-btns .btn {
    min-width:175px;
    max-height:32px;
}
@media screen and (max-width : 450px) {
    .file-manager .document-category-btns {
        margin:0 0 0 0;
        display: block;
        justify-content: end;
        text-align: left;
    }
    .file-manager .document-category-btns .btn {
        width:100%;
        display:block;
        margin-bottom:5px
    }
}

.folders-list li {
    width: 100%;
    min-height: 11px;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

        .folders-list li.active {
            color: #436797;
        }

        .folders-list li.attachment-drag {
            border: 1px dashed black;
            border-radius: 5px;
            padding: 5px;
        }

        .folders-list li i {
            margin-right: 5px;
        }

.document {
    float: left;
    width: calc(20% - 20px);
    max-width: 240px;
    margin: 0px 10px 20px 0px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #dce2e9;
}

@media screen and (max-width : 1250px) {
    .document {
        width: calc(33% - 20px);
    }
}

@media screen and (max-width : 850px) {
    .document {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width : 450px) {
    .document {
        width: calc(100% - 20px);
    }
}

.document .document-body {
    height: 70px;
    text-align: center;
    border-radius: 3px 3px 0 0;
    background-color: #fdfdfe;
}

    .document .document-body.permanent {
        background-color: rgba(167, 13, 13, 0.75);
        color: white;
    }

        .document .document-body i.final {
            color: rgba(24, 109, 24, 0.582);
        }

    .document .document-body i {
        font-size: 30px;
        line-height: 75px;
    }

    .document .document-body img {
        width: 100%;
        height: 100%;
    }

.document .document-footer {
    border-top: 1px solid #ebf1f5;
    min-height: 43px;
    padding: 5px 12px;
    border-radius: 0 0 2px 2px;
}

    .document .document-footer .document-name {
        display: block;
        margin-bottom: 0;
        font-size: 15px;
        font-weight: 600;
        width: 100%;
        line-height: normal;
        overflow-x: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .document .document-footer .document-description {
        display: block;
        margin-top: -1px;
        font-size: 11px;
        font-weight: 600;
        color: #8998a6;
        width: 100%;
        line-height: normal;
        overflow-x: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
