.CFileManager.view1{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.5em;
}
.CFileManager.view1 .CFileManager-container{
    position: relative;
    height:calc(100% - 1em);

}
.CFileManager.view1 .file-work-area{
    height: calc(100% - 2em);
    white-space: break-spaces;
    overflow-y: auto;
}
.CFileManager.view1 .file-upload-area{
    position: absolute;
    left:0;
    bottom:0;
    height: 0;
    overflow: hidden;
    border:4px dashed rgba(0, 0, 0, 0.452);
    color:rgba(0, 0, 0, 0.452);
    font-size: 2em;
    border-radius: 0.5em;
    display: none;
    cursor: pointer;
}
.CFileManager.view1 .file-upload-area input{
    position: absolute;
    top:0; left:0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}
.CFileManager.view1 .file-upload-area progress{
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    font-size: 0.5em;
}
.CFileManager.view1 .file-details-area{
    position: absolute;
    right:0;
    bottom:0;
    width: 30%;
    height: calc(100% - 2em);
    overflow: hidden;
    transform: translateX(50vw);
    transition: transform 0.5s;
    background: rgba(0, 0, 0, 0.15);
    font-size: 0.8em;
}
.CFileManager.view1.uploadable .file-work-area{
    height: calc(60% - 2em);
}
.CFileManager.view1.uploadable .file-upload-area{
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.CFileManager.view1:not(.detailable) .file-upload-area{
    right:0;
}
.CFileManager.view1.detailable .file-work-area{
    width:70%;
}
.CFileManager.view1.detailable .file-upload-area{
    right:30%;
}
.CFileManager.view1.detailable .file-details-area{
    transform: translateX(0)
}


.CFileManager.view2{
    position: fixed;
    top:0;    
    right:0;
    bottom: 0;
    left:0;
    background-color: rgba(192, 192, 192, 0.5);
    z-index: 2;
}
.CFileManager.view2>div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.CFileManager.view2 .main-container{
    height: 70vh;
    width: 70vw;
    background-color: white;
    padding:5px;
    border-radius: 5px;
}
.CFileManager.view2 .close-container{
    text-align: end;
    padding:0.25em;
}
.CFileManager.view2 .close-btn{
    display: inline-block;
    cursor: pointer;
}
.CFileManager.view2 .CFileManager-container{
    position: relative;
    height:calc(100% - 2em);

}
.CFileManager.view2 .file-work-area{
    height: calc(100% - 2em);
    white-space: break-spaces;
    overflow-y: auto;
}
.CFileManager.view2 .file-upload-area{
    position: absolute;
    left:0;
    bottom:0;
    height: 0;
    overflow: hidden;
    border:4px dashed rgba(0, 0, 0, 0.452);
    color:rgba(0, 0, 0, 0.452);
    font-size: 2em;
    border-radius: 0.5em;
    display: none;
    cursor: pointer;
}
.CFileManager.view2 .file-upload-area input{
    position: absolute;
    top:0; left:0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}
.CFileManager.view2 .file-upload-area progress{
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    font-size: 0.5em;
}
.CFileManager.view2 .file-details-area{
    position: absolute;
    right:0;
    bottom:0;
    width: 30%;
    height: calc(100% - 2em);
    overflow: hidden;
    transform: translateX(50vw);
    transition: transform 0.5s;
    background: rgba(0, 0, 0, 0.15);
    font-size: 0.8em;
}
.CFileManager.view2.uploadable .file-work-area{
    height: calc(60% - 2em);
}
.CFileManager.view2.uploadable .file-upload-area{
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.CFileManager.view2:not(.detailable) .file-upload-area{
    right:0;
}
.CFileManager.view2.detailable .file-work-area{
    width:70%;
}
.CFileManager.view2.detailable .file-upload-area{
    right:30%;
}
.CFileManager.view2.detailable .file-details-area{
    transform: translateX(0)
}