.ecwafe-timeline {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding: 20px;
	gap: 30px;
}
.ecwafe-timeline-vertical {
	flex-direction: column;
	overflow-x: visible;
	overflow-y: auto;
	border-left: 3px solid #4caf50;
}
.ecwafe-timeline-horizontal {
	flex-direction: row;
	border-top: 3px solid #4caf50;
}
.ecwafe-timeline-item {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border-radius: 10px;
	padding: 15px 20px;
	width: 220px;
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	flex-shrink: 0;
}
.ecwafe-timeline-vertical .ecwafe-timeline-item {
	width: auto;
	margin-left: 20px;
	margin-bottom: 30px;
}
.ecwafe-timeline-item.visible {
	opacity: 1;
	transform: translateY(0);
}
.ecwafe-timeline-icon {
	width: 40px;
	height: 40px;
	background: #4caf50;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	position: absolute;
	top: 20px;
	left: -50px;
}
.ecwafe-timeline-horizontal .ecwafe-timeline-icon {
	top: -48px;
	left: 20px;
}
.ecwafe-timeline-horizontal .ecwafe-timeline-item {
	margin-top: 20px;
}
.ecwafe-timeline-icon img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.ecwafe-timeline-content {
	margin-left: 50px;
}
.ecwafe-timeline-horizontal .ecwafe-timeline-content {
	margin-left: 0;
	margin-top: 50px;
	text-align: center;
}
.ecwafe-timeline-date {
	font-size: 13px;
	color: #888;
	margin-bottom: 5px;
	display: block;
}
.ecwafe-timeline-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
}
.ecwafe-timeline-description {
	font-size: 14px;
	color: #555;
}