.cropper {
	margin-top: 20px;
	margin-bottom: 20px;
}

.cropper_frame {
	display: none;
	position: relative;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #F4F4F4;
	border-radius: 5px;
	touch-action: none;
	cursor: default;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 14px;
	flex-shrink: 0;
}

.cropper_frame.cropper_default {
	cursor: default;
}

.cropper_frame.cropper_editing {
	cursor: grab;
}

.cropper_frame.cropper_editing:active {
	cursor: grabbing;
}

.cropper_frame.cropper_confirmed {
	cursor: default;
}

.cropper_frame::after {
	content: "";
	position: absolute;
	inset: 0;
	box-sizing: border-box;
	border: 10px solid rgba(255,255,255,0.5);
	pointer-events: none;
}

.cropper_img {
	display: block;
	position: absolute;
	user-select: none;
	-webkit-user-drag: none;
	max-width: none;
	max-height: none;
}

.cropper_controls {
	display: none;
	margin-bottom: 14px;
}

.cropper_controls label {
	font-size: 13px;
	margin-bottom: 6px;
}

.cropper_zoom {
	width: 100%;
}

.cropper_buttons {
	display: none;
	gap: 10px;
	margin-bottom: 14px;
	justify-content: center;
	align-items: center;
}

.cropper_status {
	font-size: 13px;
	color: #555;
	white-space: pre-wrap;
}

.cf_image_upload {
	width: 100%;
}

.cf_image_upload label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
}

.cf_image_upload input[type="file"] {
	width: 100%;
}

.cf_image_upload input[data-cf-role="input"] {
	display: none;
}

.cf_image_upload [data-cf-role="filename"] {
	display: inline-block;
	margin-inline-start: 10px;
}