.cropArea {
	background: #E4E4E4;
	overflow: hidden;
	width: 200px;
	height: 200px;
	float: right;
}

img-crop {
	width: 100%;
	display: block;
	border: 1px solid gray;
}

img-crop.fixed-height {
	height: 200px;
	position: relative;
	overflow: hidden;
}

img-crop.fixed-height canvas {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}

img-crop.full-width {
	text-align: center;
}

img-crop.full-width canvas {
	display: inline;
}

img-crop canvas {
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	/* mobile webkit */
}

img-crop .loading {
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	color: white;
	background-color: rgba(0, 0, 0, 0.75);
}

img-crop .loading .fixed-height {
	height: 90%;
	position: absolute;
}

.crop_image_border_gray {
	border: 1px solid gray;
}