body {
	font: 12px OpenSans, sans-serif;
}

.imageEditorControls {
	width: 100%;
	position: relative;
	display: none;
	justify-content: space-between;
	align-items: center;
}

.imageEditorDrop {
	color: #555;
	font-size: 18px;
	text-align: center;

	background-color: #c8dadf;
	background-image: url(upload.svg);
	background-position: 50% 40%;
	background-repeat: no-repeat;
	background-size: auto 28%;

	padding-top: 150px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;

	box-sizing: border-box;
	width: 100%;
	height: 200px;

	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;
}


.imageEditorInput {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.imageEditorLabel {
	display: block;
	font-size: 16px;
	cursor: pointer;
	color: #0f3c4b;
	font-family: Metropolis,Avenir Next,Helvetica Neue,Arial,sans-serif;
}

.editorLabelLink {
	cursor:pointer;
	color:blue;
	text-decoration:underline;
}

.editorLabelClick:hover {
	color: #39bfd3;
}

.warningLabel {
	display: none;
	font-size: 12px;
	color: red;
}

.noteLabel {
	font-size: 14px;
	font-family: Metropolis,Avenir Next,Helvetica Neue,Arial,sans-serif;
}

.containerDiv {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.imageEditorImg {
	display: none;
	max-width: 100%;
	max-height: 200px;
	position: relative;
}

.imageEditorCanvas {
	display: none;
}

.imageEditorPreview {
	margin: 0 auto;
	display: none;
	max-width: 100%;
	max-height: 200px;
	position: relative;
}

/*
 * imgAreaSelect default style
 */

.imgareaselect-border1 {
	background: url(border-v.gif) repeat-y left top;
}

.imgareaselect-border2 {
	background: url(border-h.gif) repeat-x left top;
}

.imgareaselect-border3 {
	background: url(border-v.gif) repeat-y right top;
}

.imgareaselect-border4 {
	background: url(border-h.gif) repeat-x left bottom;
}

.imgareaselect-border1, .imgareaselect-border2,
.imgareaselect-border3, .imgareaselect-border4 {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.imgareaselect-handle {
	background-color: #fff;
	border: solid 1px #000;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.imgareaselect-outer {
	background-color: #000;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.imgareaselect-selection {
}