.cw-3e7121b8-wrapper {
	position: relative;
	width: 100%;
	/* Add some padding relative to radius so items don't overflow the widget bounding box */
	min-height: calc(var(--radius, 200px) * 2 + 150px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	--anim-speed: 0.8s;
	--anim-gap: 0.3s;
	--line-width: 2px;
	--line-color: #e0e0e0;
	--radius: 200px;
	/* These are default fallbacks. Real values are set by Elementor controls */
	--raw-gap-start: 80;
	--raw-gap-end: 40;
}

.cw-3e7121b8-center {
	position: absolute;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	/* Base styles for center logo */
}

.cw-3e7121b8-center img {
	display: block;
	max-width: 120px;
	height: auto;
}

.cw-3e7121b8-lines, 
.cw-3e7121b8-nodes {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	z-index: 5;
}

/* Lines connecting the center to nodes */
.cw-3e7121b8-line {
	position: absolute;
	top: 0;
	left: 0;
	height: var(--line-width);
	background-color: var(--line-color);
	/* Origin is at the very center (0) so rotation works. */
	transform-origin: 0 50%;
	/* The actual transform values (translateX and rotation) are set by JS */
	/* We default to 0 width and handle drawing via animation */
	width: 0; 
	/* We use a custom property set by JS for the final calculated width */
	--target-width: 100px; 
}

/* The nodes containing image/text */
.cw-3e7121b8-node {
	position: absolute;
	top: 0;
	left: 0;
	/* Rotate out, translate by radius, then rotate back to stay upright */
	transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
	opacity: 0; /* Hidden initially */
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff; /* Optional default */
}

.cw-3e7121b8-node-image img {
	display: block;
	max-width: 60px;
	height: auto;
}

.cw-3e7121b8-node-text {
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
}

/* Animations Triggered via .is-animated class from JS */
.cw-3e7121b8-wrapper.is-animated .cw-3e7121b8-line {
	animation: cw-3e7121b8-draw-line var(--anim-speed) ease forwards;
	animation-delay: calc(var(--index) * var(--anim-gap));
}

.cw-3e7121b8-wrapper.is-animated .cw-3e7121b8-node {
	animation: cw-3e7121b8-fade-node 0.6s ease forwards;
	/* Node appears shortly after its connecting line finishes */
	animation-delay: calc((var(--index) * var(--anim-gap)) + (var(--anim-speed) * 0.7));
}

@keyframes cw-3e7121b8-draw-line {
	to { width: var(--target-width); }
}

@keyframes cw-3e7121b8-fade-node {
	from { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translate(calc(var(--radius) - 20px)) rotate(calc(-1 * var(--angle))) scale(0.8); }
	to { opacity: 1; transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle))) scale(1); }
}

/* Inside Elementor Editor, immediately show everything so user can style it */
.elementor-editor-active .cw-3e7121b8-line {
	width: var(--target-width) !important;
	animation: none !important;
}
.elementor-editor-active .cw-3e7121b8-node {
	opacity: 1 !important;
	animation: none !important;
}
