/*DropZone*/


.nb-dropzone{
	min-height:100px;
	clear:both;
	position:relative;
	
}

.nb-dropzone{
	border: 2px dashed #3d70b2;
	border-radius: 5px;
	background: white; 
}

.nb-dropzone.nb-dropzone-drag-hover{
	border-style:solid;
}
.nb-dropzone.nb-dropzone-drag-hover > *{
	opacity:0.5;
}

.nb-dropzone-file{
	width:200px;
	border:1px solid gray;
	position:relative;
	color:white;
	background:white;
	line-height:22px;
	float:left;
	margin:5px;
}
.nb-dropzone-filename, .nb-dropzone-filesize{
	mix-blend-mode:exclusion;
}
    
.nb-dropzone-filename {
	cursor:pointer;
	max-width:100%;
	margin-right:20px;
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
	display:block;
	position:relative;
	padding-left:2px;
}
.nb-dropzone-fileinfo{
	visibility:collapse;
	height:0;
}
.nb-dropzone-fileinfo.open{
	height:initial;
	visibility:visible;
	display:block;
}
.nb-dropzone-filesize {
	max-width:100%;
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
	display:block;
	position:relative;
}
.nb-dropzone-progress{
	background-color:#3d70b2;
	height:100%;
	position:absolute;
	bottom:0;
}
.nb-dropzone-cancel{
	cursor:pointer;
	position:absolute;
	width:20px;
	height:20px;
	background:white;
	top:1px;
	right:1px;
	background:#3d70b2;
}
.nb-dropzone-cancel:hover{
	background:#224e88;
}

.nb-dropzone-cancel svg.cancel line{
	stroke:#ce6a35;
	stroke-width:10;
}
.nb-dropzone-file .nb-dropzone-cancel svg.success{
	display:none;
}
.nb-dropzone-file.nb-dropzone-success .nb-dropzone-cancel svg.success{
	display:initial;
}
.nb-dropzone-file.nb-dropzone-success .nb-dropzone-cancel svg.cancel{
	display:none;
}

.nb-dropzone-file.nb-dropzone-success .nb-dropzone-cancel:hover svg.cancel{
	display:initial;
}
.nb-dropzone-file.nb-dropzone-success .nb-dropzone-cancel:hover svg.success{
	display:none;
}

.nb-dropzone-message{
	position:absolute;
	opacity:0.8;
	left:0;
	right:0;
	text-align:center;
	top:50%;
	line-height:0;
	user-select:none;
}




/*DropZone*/