.aa-docmng-explorer .folder-pane {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 170px);
    height: calc(var(--vh, 1vh) * 100 - 170px);
    border: solid #d6d6d6 1px;
    padding: 0;
    overflow-x: auto;
}

.aa-docmng-explorer .file-pane {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 170px);
    height: calc(var(--vh, 1vh) * 100 - 170px);
    border-top: solid #d6d6d6 1px;
    border-right: solid #d6d6d6 1px;
    border-bottom: solid #d6d6d6 1px;
    padding: 0;
    overflow-x: auto;
}

@media screen and (max-width: 575.98px) {
    .aa-docmng-explorer .folder-pane {
        height: calc(100vh - 246px);
        height: calc(var(--vh, 1vh) * 100 - 246px);
    }

    .aa-docmng-explorer .file-pane {
        height: calc(100vh - 246px);
        height: calc(var(--vh, 1vh) * 100 - 246px);
    }
}

.aa-docmng-explorer .button-area {
    width: 100%;
    padding: 0.6rem;
}

.aa-docmng-explorer .content-area {
    flex-grow: 1;
    width: 100%;
    overflow: auto;
    padding: 0.6rem;
}

.aa-docmng-explorer .btn-access {
    color: hsl(180, 58%, 33%);
    margin-left: .6rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.aa-docmng-explorer .btn-access:hover {
    color: #1c6666;
}

.aa-docmng-explorer button[type=button],
.aa-docmng-explorer button[type=submit] {
    font-size: .9rem;
}

.aa-docmng-explorer .nowrap-row {
    flex-wrap: nowrap;
}

.aa-docmng-explorer .current-folder {
    font-size: .9rem;
    background-color: rgba(0,0,0,0.05);
}

.aa-docmng-explorer .file-list {
    position: relative;
    width: 100%;
    min-width: 500px;
    font-size: .9rem;
}

.aa-docmng-explorer .update-datetime {
    width: 150px;
}

.aa-docmng-explorer .file-size {
    width: 80px;
}

.aa-docmng-explorer .operation-button {
    width: 46px;
}

.aa-docmng-explorer .target-folder {
    font-size: .9rem;
    background-color: rgba(0,0,0,0.05);
}

.aa-docmng-explorer .tree-view,
.aa-docmng-explorer .tree-view ul {
    margin: 0 0 0 0;
    list-style: none;
    vertical-align: middle;
    position: relative;
}

.aa-docmng-explorer .tree-view .root-folder {
    left: -36px;
}

.aa-docmng-explorer .tree-view ul,
.aa-docmng-explorer .tree-view li {
    position: relative;
    white-space: nowrap;
}

.aa-docmng-explorer .tree-view .folder-icon {
    padding-left: .2rem;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: .1rem;
    margin-bottom: .1rem;
    font-size: .9rem;
    cursor: pointer;
}

.aa-docmng-explorer .tree-view .folder-name {
    font-size: .9rem;
    margin-bottom: 0;
    padding: .2rem .3rem;
    cursor: pointer;
}

.aa-docmng-explorer .tree-view .folder-name:not(.active):hover {
    background-color: rgba(0,0,0,0.05);
    border-radius: 0.25rem;
}

.aa-docmng-explorer .tree-view label.active {
    background-color: hsl(180, 58%, 33%);
    color: white;
    border-radius: 0.25rem;
}

.aa-docmng-explorer .tree-view li::before {
    content: "";
    position: relative;
    top: -4px;
    display: inline-block;
    margin-left: 8px;
    margin-right: 5px;
    width: 10px;
    height: 1px;
    background: #ccc;
}

.aa-docmng-explorer .tree-view li.expandable::before {
    margin-left: 8px;
    margin-right: 4px;
}

.aa-docmng-explorer .tree-view li::after {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: 8px;
    bottom: -2px;
    margin-bottom: 5px;
    width: 1px;
    background: #ccc;
}

.aa-docmng-explorer .tree-view li:last-child::after {
    bottom: 11px;
}

.aa-docmng-explorer .tree-view li.expandable:last-child::after {
    bottom: initial;
    height: 22px;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox],
.aa-docmng-explorer .tree-view li > [type=checkbox] {
    vertical-align: middle;
    position: absolute;
    left: 0;
    z-index: 1;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox] ~ li {
    display: none;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox]:checked ~ li {
    display: block;
}

.aa-docmng-explorer .tree-view li > [type=checkbox] ~ ul {
    display: none;
}

.aa-docmng-explorer .tree-view li > [type=checkbox]:checked ~ ul {
    display: block;
}

.aa-docmng-explorer .tree-view [type=checkbox] {
    visibility: hidden;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox]:checked + label::after,
.aa-docmng-explorer .tree-view li > [type=checkbox]:checked + label::after {
    content: "\f65d";
    font-family: "Font Awesome 5 Free";
    font-size: 1.3rem;
    font-weight: 900;
    color: hsl(180, 58%, 33%);
    margin-left: -2px;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox]:checked + label::after {
    margin-left: -4px;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox]:checked + label:hover:after,
.aa-docmng-explorer .tree-view li > [type=checkbox]:checked + label:hover:after {
    color: #1c6666;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox] + label::after,
.aa-docmng-explorer .tree-view li > [type=checkbox] + label::after {
    content: "\f65e";
    font-family: "Font Awesome 5 Free";
    font-size: 1.3rem;
    font-weight: 900;
    color: hsl(180, 58%, 33%);
    margin-left: -2px;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox] + label::after {
    margin-left: -4px;
}

.aa-docmng-explorer .tree-view .root-folder > [type=checkbox] + label:hover:after,
.aa-docmng-explorer .tree-view li > [type=checkbox] + label:hover:after {
    color: #1c6666;
}

.aa-docmng-explorer .tree-view .root-folder > .end-folder::after,
.aa-docmng-explorer .tree-view li > .end-folder::after {
    content: "\f07b";
    font-family: "Font Awesome 5 Free";
    font-size: 1.3rem;
    font-weight: 900;
    color: hsl(180, 58%, 33%);
    margin-left: -2px;
}

.aa-docmng-explorer .tree-view .root-folder > .end-folder::after {
    margin-left: -4px;
}

.aa-docmng-explorer .tree-view .root-folder > .end-folder:hover:after,
.aa-docmng-explorer .tree-view li > .end-folder:hover:after {
    color: #1c6666;
}

.aa-docmng-explorer .upload-area {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 350px;
    border: 1px dotted rgba(0, 0, 0, .4);
    text-align: center;
    z-index: 90;
}

.aa-docmng-explorer .upload-area i {
    position: absolute;
    font-size: 120px;
    opacity: .1;
    width: 100%;
    left: 0;
    top: 120px;
}

.aa-docmng-explorer .upload-area p {
    width: 100%;
    position: absolute;
    top: 170px;
    opacity: .8;
}

.aa-docmng-explorer .upload-area .multiple-filename {
    position: absolute;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: wrap;
}

.aa-docmng-explorer .upload-area input[type="file"] {
    top: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    width: calc(100% - 20px);
    height: 100%;
    cursor: pointer;
}

.aa-docmng-explorer .file-list .file-name {
    cursor: pointer;
}

.aa-docmng-explorer .file-list .attribute-icon {
    font-size: 0.8rem;
}

.aa-docmng-explorer .file-content,
.aa-docmng-explorer .video-content {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100vh - 48px);
    height: calc(var(--vh, 1vh) * 100 - 48px);
    background-color: #333333;
}

.aa-docmng-explorer .btn-file-content-close {
    color: white;
    font-size: 2.8rem;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
}

.aa-docmng-explorer .btn-file-content-close:hover {
    color: #1c6666;
}

.aa-docmng-explorer .group-selection-box {
    height: 800px;
    overflow-y: auto;
}

.aa-docmng-explorer .operation-btn-col {
    width: 40px;
    text-align: center;
}

.aa-docmng-explorer .option-checkbox {
    font-size: 0.8rem;
}

.aa-docmng-explorer .option-checkbox > input {
    position: relative;
    top: 1px;
}

#aa-docmng-accesslogs-accesslogs .search-box {
    background-color: #f3f3f3;
}
