.box_upload{
	background: #e9e9e9;
	position: relative;
}

.box_upload.has-advanced-upload
{
	outline: 2px dashed #92b0b3;
	outline-offset: -10px;

	-webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
	transition: outline-offset .15s ease-in-out, background-color .15s linear;
}
.box_upload.is-dragover
{
	outline-offset: -20px;
	outline-color: #c8dadf;
	background-color: #fff;
}
.box_upload__dragndrop, .box_upload__icon{
	display: none;
}
.box_upload.has-advanced-upload .box_upload__dragndrop
{
	display: inline;
}
.box_upload.has-advanced-upload .box_upload__icon
{
	width: 100%;
	height: 80px;
	fill: #92b0b3;
	display: block;
	margin-bottom: 40px;
}

.box_upload.is-uploading .box_upload__input,
.box_upload.is-success .box_upload__input,
.box_upload.is-error .box_upload__input
{
	visibility: hidden;
}

.box_upload__uploading,
.box_upload__success,
.box_upload__error
{
	display: none;
}
.box_upload.is-uploading .box_upload__uploading,
.box_upload.is-success .box_upload__success,
.box_upload.is-error .box_upload__error
{
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;

	-webkit-transform: translateY( -50% );
	transform: translateY( -50% );
}
.box_upload__uploading
{
	font-style: italic;
}
.box_upload__success
{
	-webkit-animation: appear-from-inside .25s ease-in-out;
	animation: appear-from-inside .25s ease-in-out;
}
	@-webkit-keyframes appear-from-inside
	{
		from	{ -webkit-transform: translateY( -50% ) scale( 0 ); }
		75%		{ -webkit-transform: translateY( -50% ) scale( 1.1 ); }
		to		{ -webkit-transform: translateY( -50% ) scale( 1 ); }
	}
	@keyframes appear-from-inside
	{
		from	{ transform: translateY( -50% ) scale( 0 ); }
		75%		{ transform: translateY( -50% ) scale( 1.1 ); }
		to		{ transform: translateY( -50% ) scale( 1 ); }
	}

.box_upload__restart
{
	font-weight: 700;
	cursor:pointer;
	display: inline-block;
	margin-bottom: 20px;
	margin-left: 20px;
	max-width: 80%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}
.box_upload__restart:focus,
.box_upload__restart:hover
{
	color: #39bfd3;
}

.box_upload__iconaux{
	margin-left:150px;
	font-size:40px;
	cursor:pointer;
}
.box_upload__iconaux:focus,
.box_upload__iconaux:hover
{
	color: #39bfd3;
}

.box_upload__file
{
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.box_upload__input label
{
	max-width: 80%;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
}
.box_upload__input label:hover strong,
.box_upload__input:focus label strong,
.box_upload__input.has-focus label strong
{
	color: #39bfd3;
}
.box_upload__input:focus label,
.box_upload__input.has-focus label
{
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}
.box_upload__input label *
{
	/* pointer-events: none; */ /* in case of FastClick lib use */
}

