.ht-wrapper-b39bbbe5 {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	overflow: hidden;
}

.ht-container-b39bbbe5 {
	flex: 1;
	overflow-x: auto;
	scroll-behavior: smooth;
	position: relative;
	padding: 100px 0;
	scrollbar-width: none; /* Firefox */
}
.ht-container-b39bbbe5::-webkit-scrollbar {
	display: none; /* Safari/Chrome */
}

.ht-line-b39bbbe5 {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, transparent, #3498db, transparent);
	transform: translateY(-50%);
	z-index: 1;
	border-radius: 3px;
}

.ht-track-b39bbbe5 {
	display: flex;
	gap: 60px;
	padding: 0 40px;
	min-width: max-content;
}

.ht-event-b39bbbe5 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 250px;
	z-index: 2;
	opacity: 0;
	animation: htFadeInUp 0.6s ease forwards;
}

@keyframes htFadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ht-event-b39bbbe5.ht-pos-top {
	justify-content: flex-end;
}
.ht-event-b39bbbe5.ht-pos-bottom {
	flex-direction: column-reverse;
	justify-content: flex-start;
}

.ht-marker-b39bbbe5 {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #3498db;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin: 20px 0;
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ht-event-b39bbbe5:hover .ht-marker-b39bbbe5 {
	transform: scale(1.15);
	box-shadow: 0 0 25px rgba(52, 152, 219, 0.8);
}

.ht-marker-b39bbbe5 svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

.ht-content-b39bbbe5 {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #f0f0f0;
}

.ht-event-b39bbbe5:hover .ht-content-b39bbbe5 {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.ht-date-b39bbbe5 {
	color: #3498db;
	font-weight: bold;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ht-nav-b39bbbe5 {
	background: #fff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 3;
	font-size: 30px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
	color: #333;
}
.ht-nav-b39bbbe5:hover {
	background: #3498db;
	color: #fff;
	transform: scale(1.05);
}
.ht-prev-b39bbbe5 { margin-right: 15px; }
.ht-next-b39bbbe5 { margin-left: 15px; }