.CJUploader
{

}
.CJUploader > .drop-zone
{
	position: relative;
	border: 2px dashed #CCC;
	width: 100%;
	height: 200px;
	overflow: auto;
}
.CJUploader > .drop-zone.drag
{
	border: 2px dashed #5D9CEC;
}
.CJUploader > .drop-zone > .drop-zone-msg
{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
.CJUploader > .drop-zone > .miniature
{
	position: relative;
	display: inline-block;
	margin: 2px;
	vertical-align: middle;

	background-color: #000;
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;

	overflow: hidden;
	text-align: center;
}
.CJUploader > .drop-zone > .miniature:before
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-family: Font Awesome\ 5 Free;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
    line-height: 1;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 47px;
    color: #FFF;
}
.CJUploader > .drop-zone > .miniature.chargement:before
{
	content: "\f110";
	-webkit-animation: 1s infinite steps(8);
    animation: 1s infinite steps(8);
    vertical-align: middle;
}
.CJUploader > .drop-zone > .miniature.file-corrupt:before
{
	content: "\f06a";
}
.CJUploader > .drop-zone > .miniature.video-quicktime:before,
.CJUploader > .drop-zone > .miniature.video-mp4:before
{
	content: "\f1c8";
}
.CJUploader > .drop-zone > .miniature.application-pdf:before,
.CJUploader > .drop-zone > .miniature.image-pdf:before
{
	content: "\f1c1";
}

.CJUploader > .drop-zone > .miniature > i
{
	position: absolute;
	top: 0;
	right: 0;
	
	font-family: Font Awesome\ 5 Free;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
    line-height: 1;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 25px;
    color: #FFF;

    background-color: #FFF;
    border-radius: 3px;
    margin: 3px;
    padding: 2px;
}
.CJUploader > .drop-zone > .miniature > .ico-check:before
{
	content: "\f058";
	color: #0FAA21;
}
.CJUploader > .drop-zone > .miniature > .ico-error:before
{
	content: "\f06a";
	color: #AA0F0F;
}
.CJUploader > .drop-zone > .miniature > .ico-delete:before
{
	content: "\f00d";
	color: #AA0F0F;
}
.CJUploader > .drop-zone > .miniature > .label
{
	position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    background-color: rgba(255,255,255,0.8);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 12px;
    color: #000;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.CJUploader > .drop-zone > .miniature > .progressbar
{
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	height: 16px;
	background-color: #414141;
	margin: 3px;
	padding: 3px;
	border-radius: 4px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
	text-align: left;
}
.CJUploader > .drop-zone > .miniature > .progressbar > div
{
	width: 0;
	height: 10px;
	border-radius: 3px;
	transition: 0.4s linear;
	transition-property: width, background-color;
  	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
  	background-color: #10bf3e;

  	animation: cssProgressActive 2s linear infinite;

  	background-image: linear-gradient(-45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent);
    background-size: 35px 35px;
}
@keyframes cssProgressActive
{
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 35px 35px;
	}
}