.ht-timeline-wrapper-fdac271b {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.ht-timeline-track-fdac271b {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE */
	padding: 40px 0;
	width: 100%;
	position: relative;
}

.ht-timeline-track-fdac271b::-webkit-scrollbar {
	display: none;
}

.ht-timeline-line-fdac271b {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	background-color: #e0e0e0;
	transform: translateY(-50%);
	z-index: 1;
}

/* Event Item Grid Layout for alternating above/below */
.ht-event-item-fdac271b {
	flex: 0 0 auto;
	width: 250px;
	display: grid;
	grid-template-rows: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	text-align: center;
	position: relative;
	z-index: 2;
	padding: 0 15px;
}

.ht-event-marker-wrapper-fdac271b {
	grid-row: 2;
	display: flex;
	justify-content: center;
}

.ht-event-marker-fdac271b {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 3px solid #333333;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.ht-event-marker-fdac271b:hover {
	transform: scale(1.1);
}

.ht-event-icon-fdac271b {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333333;
	font-size: 16px;
}

.ht-event-icon-fdac271b svg {
	width: 16px;
	height: 16px;
	fill: #333333;
}

/* Alternating rows logic */
.ht-event-item-fdac271b:nth-child(odd) .ht-event-content-wrap-fdac271b {
	grid-row: 1;
	align-self: flex-end;
}
.ht-event-item-fdac271b:nth-child(odd) .ht-event-date-wrap-fdac271b {
	grid-row: 3;
	align-self: flex-start;
}

.ht-event-item-fdac271b:nth-child(even) .ht-event-content-wrap-fdac271b {
	grid-row: 3;
	align-self: flex-start;
}
.ht-event-item-fdac271b:nth-child(even) .ht-event-date-wrap-fdac271b {
	grid-row: 1;
	align-self: flex-end;
}

.ht-event-title-fdac271b {
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: 600;
	color: #333333;
}

.ht-event-desc-fdac271b {
	margin: 0;
	font-size: 14px;
	color: #666666;
	line-height: 1.4;
}

.ht-event-date-fdac271b {
	font-size: 14px;
	font-weight: 700;
	color: #888888;
}

/* Navigation Buttons */
.ht-nav-btn-fdac271b {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background-color: rgba(0,0,0,0.5);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
	padding: 0;
}

.ht-nav-btn-fdac271b:hover {
	background-color: rgba(0,0,0,0.8);
}

.ht-nav-prev-fdac271b {
	left: 10px;
}

.ht-nav-next-fdac271b {
	right: 10px;
}
