.cr-wrapper-3264df4b {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
	overflow: hidden;
}

.cr-container-3264df4b {
	position: relative;
	width: calc(var(--radius, 250px) * 2);
	height: calc(var(--radius, 250px) * 2);
	border: 2px dashed #ccc;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: cr-rotate-container-3264df4b 60s linear infinite;
}

@keyframes cr-rotate-container-3264df4b {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.cr-step-3264df4b {
	position: absolute;
	top: 50%;
	left: 50%;
	/* Combine initial positioning with a counter-rotation animation to keep text upright */
	animation: cr-counter-rotate-3264df4b 60s linear infinite;
	z-index: 2;
}

@keyframes cr-counter-rotate-3264df4b {
	from {
		transform: 
			rotate(calc(360deg / var(--total) * var(--i))) 
			translate(var(--radius, 250px)) 
			rotate(calc(-360deg / var(--total) * var(--i)))
			translate(-50%, -50%)
			rotate(0deg);
	}
	to {
		transform: 
			rotate(calc(360deg / var(--total) * var(--i))) 
			translate(var(--radius, 250px)) 
			rotate(calc(-360deg / var(--total) * var(--i)))
			translate(-50%, -50%)
			rotate(-360deg);
	}
}

.cr-content-box-3264df4b {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	padding: 15px;
	width: 180px;
	text-align: center;
	transition: box-shadow 0.3s ease;
}

.cr-content-box-3264df4b:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cr-image-3264df4b {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 10px;
	display: block;
}

.cr-title-3264df4b {
	margin: 0 0 5px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.cr-desc-3264df4b {
	margin: 0;
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

@media (max-width: 767px) {
	.cr-container-3264df4b {
		width: 100%;
		height: auto;
		border: none;
		border-radius: 0;
		flex-direction: column;
		gap: 20px;
		animation: none;
	}
	.cr-step-3264df4b {
		position: static;
		animation: none;
		transform: none !important;
	}
	.cr-content-box-3264df4b {
		width: 100%;
		max-width: 300px;
	}
}