.elementor-widget-jdw-science-timeline {
	width: 100%;
}

.elementor-widget-jdw-science-timeline .jdw-science-timeline {
	--jdw-science-timeline-accent: var(--e-global-color-primary, #ff6a13);
	--jdw-science-timeline-text: var(--e-global-color-text, #6b7280);
	position: relative;
	width: 100%;
	padding-bottom: 32.55%;
	overflow: visible;
	color: var(--jdw-science-timeline-accent);
}

.elementor-widget-jdw-science-timeline .jdw-st-svg {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.elementor-widget-jdw-science-timeline .jdw-st-lines path {
	opacity: 0;
	transform: translateX(-30px);
	transform-box: fill-box;
	transform-origin: center;
}

.elementor-widget-jdw-science-timeline .jdw-science-timeline.is-active .jdw-st-lines path {
	animation: jdwScienceTimelineDraw 2s ease-out both;
	animation-delay: calc(var(--jdw-st-path-index, 0) * 0.022s + 0.06s);
}

.elementor-widget-jdw-science-timeline .jdw-st-marker {
	fill: var(--jdw-science-timeline-accent);
	stroke: #fff;
	stroke-width: 1.8;
	opacity: 0;
	transform: scale(.2);
	transform-box: fill-box;
	transform-origin: center;
}

.elementor-widget-jdw-science-timeline .jdw-st-tick {
	stroke: var(--jdw-science-timeline-accent);
	stroke-width: .8;
	stroke-opacity: .6;
	opacity: 0;
	transform: scale(.2);
	transform-box: fill-box;
	transform-origin: center;
}

.elementor-widget-jdw-science-timeline .jdw-science-timeline.is-active .jdw-st-marker {
	animation: jdwScienceTimelinePop .45s cubic-bezier(.22, .68, 0, 1.36) both;
	animation-delay: var(--jdw-st-delay, 0s);
}

.elementor-widget-jdw-science-timeline .jdw-science-timeline.is-active .jdw-st-tick {
	animation: jdwScienceTimelinePop .3s ease-out both;
	animation-delay: var(--jdw-st-delay, 0s);
}

.elementor-widget-jdw-science-timeline .jdw-st-labels {
	position: absolute;
	inset: 0;
	overflow: visible;
	pointer-events: none;
}

.elementor-widget-jdw-science-timeline .jdw-st-node {
	position: absolute;
	display: flex;
	width: 160px;
	flex-direction: column;
	align-items: center;
	text-align: center;
	pointer-events: auto;
	opacity: 0;
}

.elementor-widget-jdw-science-timeline .jdw-st-node-above {
	transform: translate(-50%, calc(-100% - 100px - var(--jdw-st-extra-offset, 0px)));
}

.elementor-widget-jdw-science-timeline .jdw-st-node-below {
	transform: translate(-50%, calc(70px + var(--jdw-st-extra-offset, 0px)));
}

.elementor-widget-jdw-science-timeline .jdw-science-timeline.is-active .jdw-st-node-above {
	animation: jdwScienceTimelineInAbove .55s ease-out both;
	animation-delay: var(--jdw-st-delay, 0s);
}

.elementor-widget-jdw-science-timeline .jdw-science-timeline.is-active .jdw-st-node-below {
	animation: jdwScienceTimelineInBelow .55s ease-out both;
	animation-delay: var(--jdw-st-delay, 0s);
}

.elementor-widget-jdw-science-timeline .jdw-st-year {
	display: block;
	color: var(--jdw-science-timeline-accent);
	font-family: var(--e-global-typography-primary-font-family, "HarmonyOS Brand"), "Microsoft YaHei", Arial, sans-serif;
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.elementor-widget-jdw-science-timeline .jdw-st-desc {
	display: block;
	margin-top: 4px;
	color: var(--jdw-science-timeline-text);
	font-family: var(--e-global-typography-text-font-family, "HarmonyOS Brand"), "Microsoft YaHei", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0;
}

.elementor-editor-active .elementor-widget-jdw-science-timeline .jdw-st-lines path,
.elementor-editor-active .elementor-widget-jdw-science-timeline .jdw-st-marker,
.elementor-editor-active .elementor-widget-jdw-science-timeline .jdw-st-tick,
.elementor-editor-active .elementor-widget-jdw-science-timeline .jdw-st-node {
	animation: none !important;
	opacity: 1;
	transform: none;
}

.elementor-editor-active .elementor-widget-jdw-science-timeline .jdw-st-node-above {
	transform: translate(-50%, calc(-100% - 80px - var(--jdw-st-extra-offset, 0px)));
}

.elementor-editor-active .elementor-widget-jdw-science-timeline .jdw-st-node-below {
	transform: translate(-50%, calc(50px + var(--jdw-st-extra-offset, 0px)));
}

@keyframes jdwScienceTimelineDraw {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes jdwScienceTimelinePop {
	0% {
		opacity: 0;
		transform: scale(.2);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes jdwScienceTimelineInAbove {
	0% {
		opacity: 0;
		transform: translate(-50%, calc(-100% - 100px - var(--jdw-st-extra-offset, 0px)));
	}

	100% {
		opacity: 1;
		transform: translate(-50%, calc(-100% - 80px - var(--jdw-st-extra-offset, 0px)));
	}
}

@keyframes jdwScienceTimelineInBelow {
	0% {
		opacity: 0;
		transform: translate(-50%, calc(70px + var(--jdw-st-extra-offset, 0px)));
	}

	100% {
		opacity: 1;
		transform: translate(-50%, calc(50px + var(--jdw-st-extra-offset, 0px)));
	}
}

@media (prefers-reduced-motion: reduce) {
	.elementor-widget-jdw-science-timeline .jdw-st-lines path,
	.elementor-widget-jdw-science-timeline .jdw-st-marker,
	.elementor-widget-jdw-science-timeline .jdw-st-tick,
	.elementor-widget-jdw-science-timeline .jdw-st-node {
		animation: none !important;
		transition: none !important;
		opacity: 1;
	}

	.elementor-widget-jdw-science-timeline .jdw-st-lines path,
	.elementor-widget-jdw-science-timeline .jdw-st-marker,
	.elementor-widget-jdw-science-timeline .jdw-st-tick {
		transform: none;
	}

	.elementor-widget-jdw-science-timeline .jdw-st-node-above {
		transform: translate(-50%, calc(-100% - 80px - var(--jdw-st-extra-offset, 0px)));
	}

	.elementor-widget-jdw-science-timeline .jdw-st-node-below {
		transform: translate(-50%, calc(50px + var(--jdw-st-extra-offset, 0px)));
	}
}
