@charset "utf-8";

.fileBlock {
	display: grid;
	grid-template-areas:
	"tree header"
	"tree content";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
	height: calc(100vh - 56px);
}
.fileBlock .header {
	grid-area: header;
	font-size: 14px;
}
.fileBlock .content {
	grid-area: content;
	padding-left: 15px;
	margin-bottom: 16px;
	position: relative;
	overflow-y: auto;
	overflow-x: hidden;
	font-size: 14px;
}
.fileBlock i {
	margin-right: 0.5em;
}

.fileBlock table i{
	font-size: 1.1rem;
}

.fileBlock i.mark-only {
	margin-right: 0;
}

.fileBlock .upload-file, .fileBlock .upload-folder {
	position: relative;
    overflow: hidden;
}

.fileBlock .upload-file input, .fileBlock .upload-folder input{
	position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    opacity: 0;
}
.fileBlock .content::-webkit-scrollbar {
	width: 6px;
}
.fileBlock .content::-webkit-scrollbar-track {
	border-radius: 5px;
	background: #f7f9fc;
}
.fileBlock .content::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: darkgrey;
}

.fileBlock .content::-webkit-scrollbar-thumb:hover {
	background: #5E5E5E;
}

.ez-filetree {
	grid-area: tree;
	width: 256px;
	border-right: 1px solid #eee;
	font-size: 14px;
	line-height: 32px;
	margin-left: -15px;
	box-sizing: border-box;
	max-width: 394px;
    min-width: 256px;
	background-color: #f7f9fc;
	display: grid;
	grid-template-areas:
	"tree-add"
	"tree-block";
	grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.ez-filetree .add-block {
	grid-area: tree-add;
	max-width: 256px;
    padding: 8px 15px 15px;
}

.ez-filetree .tree-block {
	grid-area: tree-block;
	position: relative;
	overflow: hidden;
}

.ez-filetree .tree-content {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow: visible;
    width: 100%;
}

.ez-filetree .tree-list {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-right: 6px;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}
.ez-filetree .tree-list::-webkit-scrollbar {
	width: 6px;
}
.ez-filetree .tree-list::-webkit-scrollbar-track {
	border-radius: 5px;
	background: #f7f9fc;
}
.ez-filetree .tree-list::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: darkgrey;
}

.ez-filetree .tree-list::-webkit-scrollbar-thumb:hover {
	background: #5E5E5E;
}

.ez-filetree ul {
	list-style: none;
    padding: 0px;
    margin: 0px;
}

.ez-filetree ul li .item {
	--toggle-width: 1rem;
	padding-left: calc(calc(var(--level) - 1) * var(--toggle-width));
	display: flex;
}

.ez-filetree ul li .item:hover{
	background-color: #E3E3E3;
	cursor: pointer;
}

.ez-filetree ul li .item i.angle:hover {
	cursor: auto;
}
.ez-filetree ul li .item i.angle {
	padding-left: 0.5em;
}
.ez-filetree ul li .item i.no-children {
	padding-left: 1em;
}

.ez-filetree ul li .item span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ez-filetree .active {
	background-color: #c2e7ff !important;
}

.ez-filetree .close {
	display: none;
}
.ez-filetree .move{
    bottom: 0;
    cursor: col-resize;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
}

.fileBlock .breadcrumb {
    background-color: #fff;
	margin-bottom: 0;
}
.fileBlock .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
}
.fileBlock .header {
	font-size: 15px;
}
.fileBlock .header .action, .fileBlock .header .selected {
	padding: 8px 15px 15px;
}

.fileBlock .header .btn {
	font-size: 15px !important;
}

.fileBlock .fileupload {
	cursor: pointer;
}
.toast_upload_info{
	width: 400px;
}
.toast_upload_info i {
	padding-right: 0.5em;
}
.toast_upload_info .message {
	padding-right: 0.5em;
}
.toast_upload_info .message .count{
	padding-left: 0.5em;
}
.toast_upload_info .ez-progress {
	position: relative;
	background: linear-gradient(to right, lightgreen 50%, transparent 50%);
	background-position: right bottom;
	background-size: 200% 100%;
	transition:all 1s ease;
	height: 10px;
}

.toast_upload_info .message:not(:first-child) {
	margin-top: 8px;
}
.fileBlock i.fa-folder, .fileBlock i.fa-file-archive {
    color: #ffd45d;
}
.fileBlock i.fa-image {
    color: #D93025;
}

.fileBlock i.fa-file-word {
    color: #4285f4;
}

.fileBlock i.fa-file-excel {
    color: #0f9d58;
}

.fileBlock i.fa-file-powerpoint {
    color: #C43E1C;
}

.fileBlock i.fa-file-pdf {
    color: #ea4335;
}

.fileBlock .content table tbody tr.selected {
	background-color: #c2e7ff;
}

