.step-wrapper,
.price-step {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}


/* 금액 박스 */
.step-box {
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 25px;
}


/* 슬라이더 영역 */
.step-bar {
	position: relative;
	height: 20px;
	width: calc(100% - 40px);
	margin: 0 auto;
}


/* 기본 라인 */
.step-line {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 6px;
	background: #e0e0e0;
	border-radius: 10px;
	transform: translateY(-50%);
}


/* 진행선 */
.step-progress {
	position: absolute;
	top: 50%;
	left: 0;
	height: 6px;
	background: #5fd0ff;
	border-radius: 10px;
	transform: translateY(-50%);
}


/* 점 영역 */
.step-dots {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}


/* 점 */
.step-point {
	position: absolute;
	top: 50%;
	width: 10px;
	height: 10px;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}


.step-point.active {
	border-color: #5fd0ff;
	background: #5fd0ff;
}


/* thumb */
.step-now {
	position: absolute;
	top: 50%;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 4px solid #5fd0ff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

/* 점 아래 라벨 */
.step-label {
	position: absolute;
	top: 18px;          /* 점 아래로 내림 */
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	color: #666;
	white-space: nowrap;
	pointer-events: none; /* 클릭 방해 방지 */
}


/* 비활성 라벨 */
.step-point.disabled .step-label {
	color: #aaa;
}