.crop-layer {
	width: 100%;
}

.box-description {
	margin: 0 0 10px;
	font-size: 14px;
	text-align: center;
	line-height: 21px;
}

.box-ext-description {
	max-width: 400px;
	margin: 0 auto;
	color: #BCBCBC;
	font-size: 13px;
	text-align: center;
	line-height: 21px;
}

.actions-layer {
	margin: 20px 0 0;
}

.crop-image-layer {
	width: 100%;
	text-align: center;
}

.crop-image-wrap {
	display: inline-block;
	position: relative;
	cursor: crosshair;
}

.crop-image {
	max-width: 100%;
	/*min-height: 200px;*/
	max-height: 70vh;
}

.crop-image-fade {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba( 0, 0, 0, 0.65 );
}

.crop-miniature-layer {
	position: absolute;
	cursor: move;
}

.crop-miniature-wrap {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}

.crop-miniature-image {
	position: absolute;
	width: 100%;
}


.crop-marker {
	position: absolute;
	width: 12px;
	height: 12px;
	background-color: #dcdcdc;
	opacity: 0.3;
	transition: opacity 0.1s ease-in;
}

.crop-marker:hover {
	opacity: 0.7;
}

.crop-marker.marker-nw {
	top: -6px;
	left: -6px;
	cursor: nw-resize;
}

.crop-marker.marker-ne {
	top: -6px;
	right: -6px;
	cursor: ne-resize;
}

.crop-marker.marker-se {
	right: -6px;
	bottom: -6px;
	cursor: se-resize;
}

.crop-marker.marker-sw {
	bottom: -6px;
	left: -6px;
	cursor: sw-resize;
}


@media ( min-height: 600px ) {
	.crop-image {
		max-height: 672px;
	}
}