/* Checkout steps */
.checkout-steps__wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
}

.step{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.3;
}

div.step{
	cursor: not-allowed;
}

.step.active{
	opacity: 1;
}

.step span{
	width: 30px;
	height: 30px;
	border-radius: 100%;
	border: 1px solid var(--color-secondary);
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.step + .step{
	margin-left: 15px;
}

.step + .step::before{
	content: '';
	display: inline-block;
	width: 150px;
	height: 1px;
	background-color: #707070;
	margin-right: 15px;
}

.step.done span{
	background-color: #707070;
	font-size: 0;
}

.step.done span:before{
	content: '';
	-webkit-mask-image: url('../../../icons/checkmark-outline.svg');
	mask-image: url('../../../icons/checkmark-outline.svg');
	background-color: currentColor;
	width: 16px;
	height: 16px;
	color: #fff;
}

@media screen and (max-width: 768px){
	.checkout-steps__wrapper{
		justify-content: space-around;
		align-items: flex-start;
	}
	.step{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-basis: 33%;
		text-align: center;
	}
	.step span{
		margin-right: 0px;
		margin-bottom: 5px;
	}
	.step + .step{
		margin-left: 0;
	}
	.step + .step::before{
		display: none;
	}
}
@media screen and (max-width: 480px){
	.step{
		flex-basis: auto;
		font-size: 12px;
	}
}