/* ======================================================================
  Steps
======================================================================== */
.v2-steps {
	margin: 0;
	list-style: none;
	counter-reset: steps-counter;
	font-size: 12px;
}

@media (max-width: 480px) {
	.v2-steps {
		text-align: center;
		width: 100%;
	}
}

.v2-steps li {
	display: inline-block;
	position: relative;
	margin-right: 20px;
	height: 45px;
	line-height: 45px;
	padding: 0 5px;
}

@media (max-width: 660px) {
	.v2-steps li {
		padding: 0 5px;
		margin-right: 5px;
	}
}

@media (max-width: 480px) {
	.v2-steps li {
		padding: 0 2px;
		margin-right: 5px;
	}
}

.v2-steps li:before {
	content: counter(steps-counter);
	counter-increment: steps-counter;
	display: inline-block;
	margin: 0 5px 0 0;
	border-radius: 50%;
	border: 1px solid #ccc;
	line-height: 18px;
	width: 20px;
	height: 20px;
	text-align: center;
}

@media (max-width: 660px) {
	.v2-steps li:before {
		width: 18px;
		height: 18px;
		line-height: 16px;
		margin: 0 4px 0 0;
		font-size: 10px;
	}
}


.v2-steps li i {
	position: absolute;
	right: -15px;
	top: 50%;
	margin-top: -7px;
}

@media (max-width: 660px) {
	.v2-steps li i {
		right: -6px;
	}
}

@media (max-width: 480px) {
	.v2-steps li i {
		display: none;
	}
}

/* =============================
  Current & completed steps
================================ */


/* Current steps */
.v2-steps li.v2-steps-current {
	color: #333;
	font-weight: 600;
}

.v2-steps li.v2-steps-current:before {
	color: #333;
	border-color: #333;
}


/* Completed steps */
.v2-steps li.v2-steps-completed:before {
	color: #fff;
	background-color: #999;
	border-color: #999;
}