@import url('https://use.fontawesome.com/releases/v5.0.13/css/all.css');
.wf {
	display: flex;
	flex-flow: column;
	background: #FFF;
	font-family: inherit;
	font-weight: normal;
	line-height: 1.5;
	position: relative;
	border: solid 1px #FFF;
	min-height: 600px;
}
.wf.ui.modal {
	display: block;
	width: calc(100% - 48px);
	max-width: 1200px;
	height: 100%;
	max-height: 90vh;
	z-index: 9999;
	box-shadow: 0 0 256px 0 rgba(0, 0, 0, 0.4);
	padding: 0;
}
.filemanager-cont.wf {
	height: calc(100vh - 175px);
}
.wf * {
	box-sizing: border-box;
}
.wf h1,
.wf h2,
.wf h3,
.wf h4,
.wf h5,
.wf h6 {
	margin: 0 auto;
	font-family: inherit;
	font-weight: 500;
	color: inherit;
}
.wf-btn {
	display: inline-block;
	cursor: pointer;
	padding: 8px 16px;
	margin: 2px;
	border: none;
	background: #EEE;
	border-radius: 2px;
	font-size: 14px;
	line-height: 1.5em;
	box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.4);
	color: #444;
	transition: all 300ms;
}
.wf-btn:hover {
	background: #DDD;
	color: #222;
}
.wf-input {
	padding: 8px 16px;
	margin: 0;
	border: solid 1px #e6e5e5;
	line-height: 1.5em;
}
.wf-hide {
	display: none !important;
}
.wf-valid {
	color: green;
}
.wf-warning {
	color: orange;
}
.wf-disable {
	pointer-events: none;
	cursor: not-allowed;
	opacity: .3;
}
.wf ul,
.wf li {
	position: relative;
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
}
.wf--titlebar,
.wf--content,
.wf--viewport,
.wf--selected {
	display: flex;
}
.wf--content {
	flex: 1 1 auto;
}
.wf--viewport {
	flex-flow: column;
	flex-grow: 1;
	/*width: calc(100% - 250px);*/
}
.wf--titlebar {
	flex: 0 0 auto;
	padding: 16px 0;
	background: #4F5467;
}
.wf--titlebar-title,
.wf--navigation {
	max-width: 250px;
	flex: 0 0 auto;
}
.wf--titlebar-title,
.wf--titlebar-actions {
	padding: 0 16px;
}
.wf--titlebar-title {
	color: #FFF;
}
.wf--titlebar-actions {
	text-align: right;
	max-width: 370px;
}
.wf--navigation {
	padding: 4px 8px 4px 0;
	overflow-y: auto;
	background-color: #FCFCFC;
	border-right: solid 1px #EEE;
}
.wf--titlebar-path {
	flex-grow: 1;
}
ul.wf--path-list {
	display: block;
	padding: 0 8px;
}
li.wf--path-item {
	display: inline-block;
}
ul.wf--navigation-list ul {
	margin-left: 15px;
}
ul.wf--navigation-list li>ul {
	display: none;
}
ul.wf--navigation-list li.expanded>ul {
	display: block;
}
ul.wf--navigation-list li.active>.wf--navigation-item--label {
	background: #DDD;
}
ul.wf--navigation-list li.active>.wf--navigation-item--expander {
	color: #333;
}
.wf .wf--navigation-item--expander {
	cursor: pointer;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	line-height: 3em;
	margin: 0;
	text-align: center;
	padding: 0;
	font-size: .75em;
	background: none;
	color: #AAA;
	box-shadow: none;
}
.wf--navigation-item--expander:hover {
	background: none;
}
.wf--navigation-item--expander i {
	display: inline-block;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}
ul.wf--navigation-list li.expanded>.wf--navigation-item--expander i {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.wf--navigation-item--label {
	margin: 2px 0 2px 18px;
	display: block;
}
.wf--pagination,
.wf--search-pagination {
	text-align: center;
	padding: 4px 0 0;
}
.wf--pagination>*,
.wf--search-pagination>* {
	text-align: center;
	display: inline-block;
	padding: 8px 0;
	width: 45px;
	margin: 2px;
	border: none;
	border-radius: 2px;
}
.wf--viewer {
	overflow-y: auto;
	flex: 1 1 auto;
}
ul.wf--viewer-list,
ul.wf--history-files-display,
ul.wf--search-files-display {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	padding: 0 8px;
}
li.wf--viewer-item {
	min-width: 200px;
	max-width: 300px;
	width: 16%;
	position: relative;
	margin-top: 8px;
	margin-bottom: 8px;
	background: #EEE;
}
li.wf--viewer-item>*,
.wf--selected-item-preview,
.wf--selected-item-remove {
	position: absolute;
}
.wf--viewer-item-view {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0;
	margin: 0;
	background: #FAFAFA;
	border: solid 1px #EEE;
}
.wf--selected-item-preview,
.wf--viewer-item-preview {
	top: 2px;
	left: 2px;
}
.wf--selected-item-remove,
.wf--viewer-item-delete {
	top: 2px;
	right: 2px;
}
.wf--selected-item-remove:hover,
.wf--viewer-item-delete:hover {
	color: red;
}
li.wf--selected-item .wf--selected-item-preview,
li.wf--selected-item .wf--selected-item-remove,
li.wf--viewer-item .wf--viewer-item-preview,
li.wf--viewer-item .wf--viewer-item-delete {
	opacity: 0;
	transition: opacity 300ms;
	outline: none;
}
li.wf--selected-item:hover .wf--selected-item-preview,
li.wf--selected-item:hover .wf--selected-item-remove,
li.wf--viewer-item:hover .wf--viewer-item-preview,
li.wf--viewer-item:hover .wf--viewer-item-delete {
	opacity: 1;
}
.wf--selected {
	flex: 0 0 auto;
	background: #e7f9ff;
}
.wf--selected-actions button {
	display: block;
	width: 150px;
}
ul.wf--selected-list {
	flex: 1 1 auto;
	overflow-y: auto;
	display: flex;
}
li.wf--selected-item {
	width: 16.5%;
	min-width: 100px;
	margin: 8px;
	background: #FFF;
	border: solid 1px #EEE;
	position: relative;
	flex: 0 0 auto;
}
.wf--selected-item .wf--selected-item-thumb {
	display: flex;
	flex-flow: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%
}
.wf--selected-item .wf--selected-item-thumb i {
	font-size: 25px
}
.wf--selected-item .wf--name {
	position: absolute;
	bottom: 0;
	padding: 5px;
	font-size: 10px;
	width: 100%;
	left: 0;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: rgba(255, 255, 255, 0.5);
	line-height: 1em
}
li.wf--viewer-item.wf--viewer-spacer {
	background: none;
}
li.wf--viewer-item::before {
	display: block;
	content: ' ';
	padding: 56.25% 0 0;
}
li.wf--viewer-item.wf--viewer-spacer::before {
	display: none;
}
.wf--selected-item-ext,
.wf--viewer-item-ext {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 64px;
	line-height: 150px;
	text-align: center;
}
.wf--viewer-item-ext i {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 60px;
	line-height: 60px;
	vertical-align: top;
}
.wf--selected-actions {
	display: flex;
	flex-flow: column;
	padding: 16px;
	justify-content: center;
}
.wf--viewer-item img,
.wf--selected-item img {
	position: absolute;
	max-height: 100%;
	max-width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.wf--viewer-item [title] {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	overflow: hidden;
	padding: 8px 16px;
}
.wf--viewer-item-file [title] {
	font-size: 11px;
	line-height: 1em;
	background: rgba(255, 255, 255, 0.8);
}
.dzuploadbox {
	min-height: 100px;
}
.wf--modal {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	justify-content: center;
	align-items: center;
}
.wf[data-modal] .wf--modal {
	display: flex;
}
.wf--modal>* {
	display: none;
	z-index: 1;
}
.wf--modal-close {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .4);
	z-index: 0;
}
.wf--modal-content {
	background: #FFF;
	min-height: 20px;
	width: 500px;
	border-radius: 2px;
	overflow: hidden;
}
.wf--modal-content.wf--modal-history,
.wf--modal-content.wf--modal-search {
	width: 650px;
}
.wf--modal-content h3 {
	text-align: center;
	background: #DDD;
	padding: 12px 0;
}
.wf[data-modal="upload-file"] .wf--modal-upload-file {
	display: block;
	width: 600px;
}
.wf[data-modal="preview-file"] .wf--modal-preview-file {
	display: block;
	background: none;
	width: auto;
	height: auto;
	max-width: calc(100% - 25px);
	max-height: calc(100% - 25px);
}
.wf[data-modal="preview-file"] .wf--modal-preview-file img {
	display: block;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
}
.wf[data-modal="new-folder"] .wf--modal-new-folder {
	display: block;
}
.wf[data-modal="history"] .wf--modal-history {
	display: block;
}
.wf[data-modal="search"] .wf--modal-search {
	display: block;
}
.wf[data-modal="loading"] .wf--modal-loading {
	display: flex;
	height: 100%;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	cursor: progress;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	font-weight: 600;
}
.wf[data-modal="loading"] .wf--modal-close {
	display: none;
}
.wf--modal-new-folder>div {
	padding: 16px;
	text-align: center;
}
.wf--new-folder-path-current {
	color: #AAA;
}
.wf--search-field input {
	padding: 5px;
	width: calc(100% - 55px);
}
.wf--search-message {
	display: none;
	padding: 5px;
}
.wf--search-message.on {
	display: block;
}
/* --------------------------------------------------------------------------------------------------------------------- */
.wf--dropzone,
.wf--dropzone * {
	box-sizing: border-box
}
.wf--dropzone {
	position: relative
}
.wf--dropzone .dz-preview {
	position: relative;
	display: inline-block;
	width: 120px;
	margin: 0.5em
}
.wf--dropzone .dz-preview .dz-progress {
	display: block;
	height: 15px;
	border: 1px solid #aaa
}
.wf--dropzone .dz-preview .dz-progress .dz-upload {
	display: block;
	height: 100%;
	width: 0;
	background: green
}
.wf--dropzone .dz-preview .dz-error-message {
	color: red;
	display: none
}
.wf--dropzone .dz-preview.dz-error .dz-error-message,
.wf--dropzone .dz-preview.dz-error .dz-error-mark {
	display: block
}
.wf--dropzone .dz-preview.dz-success .dz-success-mark {
	display: block
}
.wf--dropzone .dz-preview .dz-error-mark,
.wf--dropzone .dz-preview .dz-success-mark {
	position: absolute;
	display: none;
	left: 30px;
	top: 30px;
	width: 54px;
	height: 58px;
	left: 50%;
	margin-left: -27px
}
@-webkit-keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px)
	}
	30%,
	70% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
		-ms-transform: translateY(-40px);
		-o-transform: translateY(-40px);
		transform: translateY(-40px)
	}
}
@-moz-keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px)
	}
	30%,
	70% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
		-ms-transform: translateY(-40px);
		-o-transform: translateY(-40px);
		transform: translateY(-40px)
	}
}
@keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px)
	}
	30%,
	70% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
		-ms-transform: translateY(-40px);
		-o-transform: translateY(-40px);
		transform: translateY(-40px)
	}
}
@-webkit-keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px)
	}
	30% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px)
	}
}
@-moz-keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px)
	}
	30% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px)
	}
}
@keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px)
	}
	30% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px)
	}
}
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1)
	}
	20% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1)
	}
}
@-moz-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1)
	}
	20% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1)
	}
}
@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1)
	}
	20% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1)
	}
}
.wf--dropzone,
.wf--dropzone * {
	box-sizing: border-box
}
.wf--dropzone {
	min-height: 250px;
	background: white;
	padding: 20px 20px;
	border: dashed 2px #d3d3d3;
	margin: 20px;
	border-radius: 2px;
	color: #646464;
}
.wf--dropzone.dz-clickable {
	cursor: pointer
}
.wf--dropzone.dz-clickable * {
	cursor: default
}
.wf--dropzone.dz-clickable .dz-message,
.wf--dropzone.dz-clickable .dz-message * {
	cursor: pointer
}
.wf--dropzone.dz-started .dz-message {
	display: none
}
.wf--dropzone.dz-drag-hover {
	border-style: solid
}
.wf--dropzone.dz-drag-hover .dz-message {
	opacity: 0.5
}
.wf--dropzone .dz-message {
	text-align: center;
	margin: 4em 0
}
.wf--dropzone .dz-preview {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 16px;
	min-height: 100px
}
.wf--dropzone .dz-preview:hover {
	z-index: 1000
}
.wf--dropzone .dz-preview:hover .dz-details {
	opacity: 1
}
.wf--dropzone .dz-preview.dz-file-preview .dz-image {
	border-radius: 20px;
	background: #999;
	background: linear-gradient(to bottom, #eee, #ddd)
}
.wf--dropzone .dz-preview.dz-file-preview .dz-details {
	opacity: 1
}
.wf--dropzone .dz-preview.dz-image-preview {
	background: white
}
.wf--dropzone .dz-preview.dz-image-preview .dz-details {
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	-ms-transition: opacity 0.2s linear;
	-o-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear
}
.wf--dropzone .dz-preview .dz-remove {
	font-size: 14px;
	text-align: center;
	display: block;
	cursor: pointer;
	border: none
}
.wf--dropzone .dz-preview .dz-remove:hover {
	text-decoration: underline
}
.wf--dropzone .dz-preview:hover .dz-details {
	opacity: 1
}
.wf--dropzone .dz-preview .dz-details {
	z-index: 20;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	font-size: 13px;
	min-width: 100%;
	max-width: 100%;
	padding: 2em 1em;
	text-align: center;
	color: rgba(0, 0, 0, 0.9);
	line-height: 150%
}
.wf--dropzone .dz-preview .dz-details .dz-size {
	margin-bottom: 1em;
	font-size: 16px
}
.wf--dropzone .dz-preview .dz-details .dz-filename {
	white-space: nowrap
}
.wf--dropzone .dz-preview .dz-details .dz-filename:hover span {
	border: 1px solid rgba(200, 200, 200, 0.8);
	background-color: rgba(255, 255, 255, 0.8)
}
.wf--dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
	overflow: hidden;
	text-overflow: ellipsis
}
.wf--dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
	border: 1px solid transparent
}
.wf--dropzone .dz-preview .dz-details .dz-filename span,
.wf--dropzone .dz-preview .dz-details .dz-size span {
	background-color: rgba(255, 255, 255, 0.4);
	padding: 0 0.4em;
	border-radius: 3px
}
.wf--dropzone .dz-preview:hover .dz-image img {
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
	-webkit-filter: blur(8px);
	filter: blur(8px)
}
.wf--dropzone .dz-preview .dz-image {
	border-radius: 20px;
	overflow: hidden;
	width: 120px;
	height: 120px;
	position: relative;
	display: block;
	z-index: 10
}
.wf--dropzone .dz-preview .dz-image img {
	display: block
}
.wf--dropzone .dz-preview.dz-success .dz-success-mark {
	-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)
}
.wf--dropzone .dz-preview.dz-error .dz-error-mark {
	opacity: 1;
	-webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	-ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)
}
.wf--dropzone .dz-preview .dz-success-mark,
.wf--dropzone .dz-preview .dz-error-mark {
	pointer-events: none;
	opacity: 0;
	z-index: 500;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin-left: -27px;
	margin-top: -27px
}
.wf--dropzone .dz-preview .dz-success-mark svg,
.wf--dropzone .dz-preview .dz-error-mark svg {
	display: block;
	width: 54px;
	height: 54px
}
.wf--dropzone .dz-preview.dz-processing .dz-progress {
	opacity: 1;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear
}
.wf--dropzone .dz-preview.dz-complete .dz-progress {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-in;
	-moz-transition: opacity 0.4s ease-in;
	-ms-transition: opacity 0.4s ease-in;
	-o-transition: opacity 0.4s ease-in;
	transition: opacity 0.4s ease-in
}
.wf--dropzone .dz-preview:not(.dz-processing) .dz-progress {
	-webkit-animation: pulse 6s ease infinite;
	-moz-animation: pulse 6s ease infinite;
	-ms-animation: pulse 6s ease infinite;
	-o-animation: pulse 6s ease infinite;
	animation: pulse 6s ease infinite
}
.wf--dropzone .dz-preview .dz-progress {
	opacity: 1;
	z-index: 1000;
	pointer-events: none;
	position: absolute;
	height: 16px;
	left: 50%;
	top: 50%;
	margin-top: -8px;
	width: 80px;
	margin-left: -40px;
	background: rgba(255, 255, 255, 0.9);
	-webkit-transform: scale(1);
	border-radius: 8px;
	overflow: hidden
}
.wf--dropzone .dz-preview .dz-progress .dz-upload {
	background: #333;
	background: linear-gradient(to bottom, #666, #444);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	-webkit-transition: width 300ms ease-in-out;
	-moz-transition: width 300ms ease-in-out;
	-ms-transition: width 300ms ease-in-out;
	-o-transition: width 300ms ease-in-out;
	transition: width 300ms ease-in-out
}
.wf--dropzone .dz-preview.dz-error .dz-error-message {
	display: block
}
.wf--dropzone .dz-preview.dz-error:hover .dz-error-message {
	opacity: 1;
	pointer-events: auto
}
.wf--dropzone .dz-preview .dz-error-message {
	pointer-events: none;
	z-index: 1000;
	position: absolute;
	display: none;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	border-radius: 8px;
	font-size: 13px;
	top: 130px;
	left: -10px;
	width: 140px;
	background: #be2626;
	background: linear-gradient(to bottom, #be2626, #a92222);
	padding: 0.5em 1.2em;
	color: white
}
.wf--dropzone .dz-preview .dz-error-message:after {
	content: '';
	position: absolute;
	top: -6px;
	left: 64px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #be2626
}
/* Fields & more */
.filemanager-field-wrapper {
	position: relative;
}
.filemanager-field {
	display: none !important
}
.filemanager-field-wrapper .preview {
	display: flex;
	flex-flow: wrap;
	flex-direction: row;
	margin-bottom: 10px;
}
.filemanager-field-wrapper .preview li {
	padding: 10px;
	display: inline-block;
	position: relative;
	background: #FFF;
	margin: 0 10px 10px 0
}
.filemanager-field-wrapper .preview li.type-file {
	padding-right: 100px
}
.filemanager-field-wrapper .preview li.type-file a.remove {
	top: 50%;
	transform: translateY(-50%)
}
.filemanager-field-wrapper .preview img {
	height: 100px;
	width: auto;
	display: inline-block;
	vertical-align: bottom;
}
.filemanager-field-wrapper .preview li a.remove {
	color: #be2626;
	position: absolute;
	display: inline-block;
	top: 0;
	right: 0;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.9);
	z-index: 5;
	font-size: 13px
}
.filemanager-field-wrapper.empty .preview {
	display: none
}
.ui.dimmer.modals {
	z-index: 9999999999;
}
@media all and (max-width:900px) {
	.wf[data-modal="upload-file"] .wf--modal-upload-file {
		width: 400px;
	}
	.wf--dropzone .dz-message {
		margin: 2em 0
	}
	.wf--dropzone {
		min-height: 200px;
	}
}
@media all and (max-width: 640px) {
	.wf--titlebar {
		flex-flow: wrap
	}
	.wf--titlebar-title {
		width: 100%;
		max-width: 100%;
		line-height: 1;
		font-size: 18px;
		margin-bottom: 15px
	}
	.wf--titlebar-title>* {
		line-height: 1;
		font-size: 18px
	}
	.wf-btn {
		padding: 5px 10px;
		font-size: 12px
	}
	li.wf--viewer-item {
		min-width: 0;
		width: 100%;
		max-width: 200px
	}
}



/* Carbon Core Redesign */

.wf {
	border: none;
}
.wf.ui.modal,
.wf.padded {
	padding: 24px 0;
}

.wf--navigation {
	display: none;
}

.wf--titlebar,
.wf--titlebar-title {
	background: transparent;
	color: inherit;
}

.wf h1, .wf h2, .wf h3, .wf h4, .wf h5, .wf h6 {
	font-weight: 700;
}

ul.wf--viewer-list, ul.wf--history-files-display, ul.wf--search-files-display {
	padding: 8px 0;
}

.filemanager-cont.wf {
	height: calc(100vh - 64px);
}

.wf--titlebar-title, .wf--titlebar-actions {
	padding: 0;
}

li.wf--viewer-item {
	background: transparent;
}
.button.wf--viewer-item-view,
.button.wf--viewer-item-view:hover,
.button.wf--viewer-item-view:active {
	color: #aaa;
	background: #f0f0f0;
	border-radius: 4px;
	border-color: #f0f0f0;
	overflow: hidden;
}

li.wf--viewer-item::before {
	display: none;
}
.button.wf--viewer-item-view {
	position: relative !important;
	width: 100%;
	display: block;
	padding-bottom: 56.25%;
}

.wf--viewer-item [title] {
	display: block;
	width: 100%;
	position: static;
	font-size: 14px;
	line-height: 1;
	color: inherit;
	padding: 12px 0;
}
.wf--viewer-item [title] > * {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: transparent;
}
.wf--viewer-item [title] .filedate {
	opacity: 0.5;
	margin: 4px 0 0 0;
}
.wf--viewer-item [title] .filedate:empty {
	display: none;
}

.wf--modal-content {
	box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.15);
}
.wf--modal-content:not(.wf--modal-preview-file) {
	padding: 24px;
	border-radius: 4px;
}
.wf--modal-content h3 {
	background: transparent;
	padding: 0;
	margin: 0 0 24px 0;
}

.wf--search-field input {
	width: calc(100% - 47px);
}

.wf--dropzone {
	margin: 0;
}

.wf[data-modal="preview-file"] .wf--modal-preview-file {
	max-width: calc(100% - 48px);
	max-height: calc(100% - 48px);
}

li.wf--path-item {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	vertical-align: middle;
}
li.wf--path-item:not(:first-child) .separator {
	display: inline-block;
	opacity: 0.5;
}
li.wf--path-item:not(:first-child) .separator::before {
	content: 'chevron_right';
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	vertical-align: middle;
}