/**
 * ChessForm! Pro - Image Crop Modal Styles
 * Desktop: Cropper.js modal
 * Mobile: Croppie fullscreen
 */

/* Desktop: Face detection loading indicator */
.rsfp-crop-loading {
	padding: 20px;
	text-align: center;
	color: #666;
	font-size: 14px;
}

.rsfp-crop-loading::after {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	margin: 10px auto 0;
	border: 3px solid #ddd;
	border-top-color: #4CAF50;
	border-radius: 50%;
	animation: rsfp-spin 0.8s linear infinite;
}

@keyframes rsfp-spin {
	to { transform: rotate(360deg); }
}

/* Desktop: Cropper.js overrides */
.rsfp-crop-image-wrapper .cropper-container {
	max-height: 100%;
}

/* Mobile: Croppie fullscreen overrides */
#rsfp-croppie-mobile .croppie-container {
	width: 100% !important;
	height: 100% !important;
}

#rsfp-croppie-mobile .cr-boundary {
	width: 100% !important;
	height: 100% !important;
	background: #000;
}

#rsfp-croppie-mobile .cr-viewport {
	border: 2px solid rgba(255, 255, 255, 0.8) !important;
	box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5) !important;
}

/* Larger zoom slider for touch */
#rsfp-croppie-mobile .cr-slider-wrap {
	width: 85%;
	margin: 8px auto;
	padding: 4px 0;
}

#rsfp-croppie-mobile .cr-slider {
	width: 100%;
	max-width: 100%;
}

#rsfp-croppie-mobile .cr-slider::-webkit-slider-thumb {
	height: 28px;
	width: 28px;
	margin-top: -12px;
	background: #fff;
}

#rsfp-croppie-mobile .cr-slider::-moz-range-thumb {
	height: 28px;
	width: 28px;
	background: #fff;
}

#rsfp-croppie-mobile .cr-slider::-webkit-slider-runnable-track {
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
}

#rsfp-croppie-mobile .cr-slider::-moz-range-track {
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
}
