/* -------- step_indicator -------- */
.step_indicator {
	display: flex;
	justify-content: center;
	width: auto;
	max-width: 500px;
	margin: 0 auto 40px;
	padding: 15px 40px;
	background: #fbfbfc;
	border-radius: 50px;
	max-height: 60px;
}

.step_indicator > li {
	position: relative;
	padding: 0 22px;
}

.step_indicator > li > p {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	color: #a4a4a4;
}

.step_indicator > li > p::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin: 0 3px 3px 0;
}

.step_indicator > li::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 4px;
	right: -10px;
	width: 24px;
	height: 24px;
	background: url(/content/images/off_order_next.png) no-repeat;
	background-size: 100% auto;
}

.step_indicator > li.active::after {
	background: url(/content/images/on_order_next.png) no-repeat;
	background-size: 100% auto;
}

.step_indicator > li:last-of-type::after {
	display: none;
}

.step_indicator > li:nth-child(1) > p::before {
	background: url(/content/images/off_order01.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li:nth-child(2) > p::before {
	background: url(/content/images/off_order02.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li:nth-child(3) > p::before {
	background: url(/content/images/off_order03.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li.active > p {
	color: #000;
}

.step_indicator > li:nth-child(1).active > p::before {
	background: url(/content/images/on_order01.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li:nth-child(2).active > p::before {
	background: url(/content/images/on_order02.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li:nth-child(3).active > p::before {
	background: url(/content/images/on_order03.png) no-repeat center;
	background-size: 100% auto;
}

/* 주문결제 아이콘 */

.step_indicator > li > p.basket::before {
	background: url(/content/images/off_order01.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li > p.payment::before {
	background: url(/content/images/off_order02.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li > p.complete::before {
	background: url(/content/images/off_order03.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li.active > p.basket::before {
	background: url(/content/images/on_order01.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li.active > p.payment::before {
	background: url(/content/images/on_order02.png) no-repeat center;
	background-size: 100% auto;
}

.step_indicator > li.active > p.complete::before {
	background: url(/content/images/on_order03.png) no-repeat center;
	background-size: 100% auto;
}

/*  */
@media (max-width: 767px) {
	.step_area {
		padding: 0 20px;
		margin-bottom: 20px;
	}

	.step_indicator {
		padding: 10px;
	}

	.step_indicator > li {
		padding: 0 12px;
	}

	.step_indicator > li > p {
		font-size: 14px;
	}

	.step_indicator > li > p::before {
		width: 20px;
		height: 20px;
	}

	.step_indicator > li::after {
		top: 50%;
		right: -7px;
		width: 15px;
		height: 15px;
		transform: translateY(-50%);
	}
}
@media (max-width: 480px) {
	.step_indicator {
		margin: 0 auto 20px;
		max-height: 39px;
		box-sizing: border-box;
		line-height: 1;
	}

	.step_indicator > li > p {
		font-size: 13px;
	}

	.step_indicator > li > p::before {
		width: 18px;
		height: 18px;
	}

	.step_indicator > li::after {
		width: 14px;
		height: 14px;
	}
}
