.image-crop-overlay {
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 10000 !important;
	padding-top: 90px;
	box-sizing: border-box;
}
.image-crop-center {
	text-align: center;
	position: relative;
}
.image-crop-preview {
	position: relative;
	display: inline-block;
	overflow: hidden;
	user-select: none;
	-webkit-user-select: none;
	line-height: 0;
	border-radius: 4px;
	max-width: 90vw;
	max-height: 75vh;
}
.image-crop-preview img {
	display: block;
	pointer-events: none;
}
.image-crop-dim {
	position: absolute;
	background: rgba(0,0,0,0.6);
	pointer-events: none;
}
.image-crop-circle-mask {
	position: absolute;
	pointer-events: none;
	box-shadow: 0 0 0 9999px rgba(0,0,0,0.6);
	border-radius: 50%;
	z-index: 1;
}
.image-crop-box {
	position: absolute;
	border: none;
	box-sizing: border-box;
	z-index: 2;
}
.image-crop-box-dashed {
	border: 1px dashed rgba(255,255,255,0.5);
}
.image-crop-handles {
	position: absolute;
	top: 0;
	left: 0;
	overflow: visible;
	pointer-events: none;
}
.image-crop-handle {
	position: absolute;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 2px;
	z-index: 10;
	pointer-events: all;
}
.image-crop-nw { cursor: nwse-resize; }
.image-crop-ne { cursor: nesw-resize; }
.image-crop-sw { cursor: nesw-resize; }
.image-crop-se { cursor: nwse-resize; }
.image-crop-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding-top: 8px;
}
