.hpt-wrapper-9be63800 {
	display: flex;
	flex-direction: row;
	position: relative;
	width: 100%;
	justify-content: space-between;
}

/* Background Line */
.hpt-line-bg-9be63800,
.hpt-line-active-9be63800 {
	position: absolute;
	top: 25px; /* Adjust to center of the 50px badge */
	left: 0;
	height: 2px;
	z-index: 1;
}

.hpt-line-bg-9be63800 {
	width: 100%;
	background-color: #e0e0e0;
}

/* Foreground Line for Animation */
.hpt-line-active-9be63800 {
	width: 0%;
	background-color: #0073e6;
	transition: width 0.1s ease-out, height 0.1s ease-out;
}

.hpt-step-9be63800 {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	z-index: 2;
	position: relative;
	padding: 0 15px;
}

.hpt-badge-wrapper-9be63800 {
	background: #fff; /* to cover the line behind it */
	padding: 0 10px;
	margin-bottom: 15px;
}

.hpt-badge-9be63800 {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hpt-badge-9be63800:hover {
	transform: scale(1.1);
	background-color: #0073e6;
}

.hpt-title-9be63800 {
	margin: 0 0 10px 0;
}

.hpt-desc-9be63800 {
	margin: 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
	.hpt-wrapper-9be63800 {
		flex-direction: column;
	}

	.hpt-line-bg-9be63800,
	.hpt-line-active-9be63800 {
		top: 0;
		left: 25px; /* Center of the badge if aligned left */
		width: 2px;
	}

	.hpt-line-bg-9be63800 {
		height: 100%;
	}

	.hpt-line-active-9be63800 {
		width: 2px;
		height: 0%;
	}

	.hpt-step-9be63800 {
		flex-direction: row;
		text-align: left;
		padding: 0 0 30px 0;
		align-items: flex-start;
	}

	.hpt-badge-wrapper-9be63800 {
		padding: 0;
		margin-right: 20px;
		margin-bottom: 0;
		background: #fff; /* Cover line */
		padding-bottom: 10px;
	}
}
