.file-upload {
	position: relative;
	overflow: hidden;
	margin: 10px;
}
.file-upload input.upload {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}
.crop-box {
	position: relative;
	height: 400px;
	width: 100%;
	background: #fff;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	cursor: move;
}
.crop-box .thumb-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	box-sizing: border-box;
	box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
	background: none repeat scroll 0% 0% transparent;
}
.crop-box .spinner {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	line-height: 400px;
	background: rgba(0, 0, 0, 0.7);
}
.state-loading{
	position:relative
}
	.state-loading::before{
	content:" ";
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:-2px;
	background:rgba(0,0,0,0.5);
	z-index:99
}
.state-loading::after{
	display:inline-block;
	font-family:tabler-icons;
	font-kerning:auto;
	line-height:35px;
	font-size:35px;
	font-style:normal;
	font-synthesis:weight style;
	font-weight:normal;
	animation:2s linear 0s normal none infinite running fa-spin;
	color:#fff;
	content:"\eca3";
	left:50%;
	position:absolute;
	text-align:center;
	top:50%;
	z-index:100;
	margin-top:-10px;
	margin-left:-10px
}