.hidn {
    display: none;
}
.context-menu-list {
    text-align: left;
}
.dzExplorer-rror {
    padding: 10px;
    font-size: medium;
    font-weight: bolder;
}
.explorer {
    width: 100%;
    height: calc(100vh - 250px);
}
.toolbar {
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    padding: 3px 10px;
    text-align: right;
}
.toolbar [data-tool] {
    display: inline-block;
    cursor: pointer;
    width: 32px;
    height: 32px;
}
.toolbar [data-tool="upload"] {
    background-image: url(../icons/plus16.png), url(../icons/file32.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom right, center;
    background-size: auto, 30px;
}
.toolbar [data-tool="newfolder"] {
    background-image: url(../icons/plus16.png), url(../icons/folderclose.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom right, center;
}
.toolbar [data-tool="select"] {
    background-image: url(../icons/check16.png), url(../icons/folderclose.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom right, center;
    background-size: 14px ,auto;
}
.toolbar [data-tool="selectall"] {
    display: none;
    background-image: url(../icons/check16.png), url(../icons/check16.png), url(../icons/check16.png), url(../icons/check16.png);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: top left, top right, bottom left, bottom right;
    background-size: 12px;
    position: relative;
    top: -3px;
    width: 24px;
    height: 24px;

}
.path {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    text-align: left;
}
.path [data-path] {
    text-decoration: none;
    cursor: pointer;
}
.pane {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 82px);
    overflow-y: auto;
    padding: 20px;
    text-align: left;
}
.pane .folder {
    cursor: pointer;
    display: inline-block;
    width: 70px;
    height: 80px;
    margin: 10px;
    background-image: url(../icons/folderclose64.png);
    background-repeat: no-repeat;
    background-position: top;
    vertical-align: top;
}
.pane .file {
    cursor: pointer;
    display: inline-block;
    width: 70px;
    height: 80px;
    margin: 10px;
    background-image: url(../icons/filetype48/file.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 48px;
    vertical-align: top;
}
.pane .file[data-type^="image/"] {
    background-size: 48px;
}
.pane .file[data-type="image/gif"] {
    /*background-image: url(../icons/filetype48/pdf.png);*/
    background-position: center 5px;
}
.pane .file[data-type="image/jpeg"] {
    /*background-image: url(../icons/filetype48/pdf.png);*/
    background-position: center 5px;
}
.pane .file[data-type="image/png"] {
    /*background-image: url(../icons/filetype48/pdf.png);*/
    background-position: center 5px;
}
.pane .file[data-type="image/bmp"] {
    /*background-image: url(../icons/filetype48/pdf.png);*/
    background-position: center 5px;
}
.pane .file[data-type="application/pdf"] { /* pdf */
    background-image: url(../icons/filetype48/pdf.png);
    background-position: center 5px;
}
.pane .file[data-type="application/msword"] { /* doc */
    background-image: url(../icons/filetype48/word.png);
    background-position: center 5px;
}
.pane .file[data-type="application/vnd.openxmlformats-officedocument.wordprocessingml.document"] { /* docx */
    background-image: url(../icons/filetype48/word.png);
    background-position: center 5px;
}
.pane .file[data-type="application/vnd.ms-excel"] { /* xls */
    background-image: url(../icons/filetype48/excel.png);
    background-position: center 5px;
}
.pane .file[data-type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"] { /* xlsx */
    background-image: url(../icons/filetype48/excel.png);
    background-position: center 5px;
}
.pane .file[data-type="application/vnd.ms-powerpoint"] { /* ppt */
    background-image: url(../icons/filetype48/powerpoint.png);
    background-position: center 5px;
}
.pane .file[data-type="application/vnd.openxmlformats-officedocument.presentationml.presentation"] { /* pptx */
    background-image: url(../icons/filetype48/powerpoint.png);
    background-position: center 5px;
}
.pane .file[data-type="application/zip"] { /* zip */
    background-image: url(../icons/filetype48/zip.png);
    background-position: center 5px;
}
.pane .file[data-type="application/x-rar-compressed"] { /* rar */
    background-image: url(../icons/filetype48/zip.png);
    background-position: center 5px;
}
.pane .folder span, .pane .file span {
    display: block;
    position: relative;
    top: 55px;
    left: -5px;
    width: 80px;
    height: 25px;
    font-size: 11px;
    font-weight: bolder;
    text-align: center;
    word-break: break-all;

}
.pane .folder input.text, .pane .file input.text {
    position: relative;
    top: 55px;
    left: -10px;
    width: 90px;
    height: 25px;
    font-size: 11px;
    font-weight: bolder;
    text-align: center;
}
.pane .folder input.checkbox, .pane .file input.checkbox {
    position: relative;
    top: 10px;
    left: 50px;
    width: 17px;
    height: 17px;
    color: green;

}