/*-------------------- ShopStep --------------------*/
.step {
	margin: 20px 0 20px;
}
.list-step {
	list-style: none;
	display: flex;
	justify-content: center;
	position: relative;
	max-width: 450px;
	margin: 0 auto;
}
.list-step::before {
	content: '';
	height: 2px;
	width: 67%;
	background: #ccc;
	position: absolute;
	left: 50%;
	top: 1.1875em;
	transform: translate(-50%,-50%);
}
/*項目*/
.list-step__item {
	width: 33%;
	text-align: center;
	color: #ccc;
}
/*數字*/
.list-step__item-num {
	width: 2.375em;
	height: 2.375em;
	line-height: 1;
	border-radius: 50%;
	border: 2px solid currentColor;
	background: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-weight: 700;
}

/*當前*/
.list-step__item--current {
	color: #033e7c;
}
/*當前-數字*/
.list-step__item--current .list-step__item-num{
	background: #2071aa;
	/*background: var(--blue-light, #033e7c);*/
	color: #fff;
	border-color: #2071aa;
	/*border-color: var(--blue-light, #033e7c);*/
}
/* 標題 */
.list-step__item-title{
	display: block;
	font-size: 14px;
	margin-top: .75em;
}
@media screen and (min-width: 768px) {
	.step {
		margin-bottom: 30px;
	}
}