.nav-tabs.steps {
	border-bottom: none;
	width: 100%;
	display: table;
	list-style: none;
	padding: 0;
}
.nav-tabs.steps > li {
	display: table-cell;
	text-align: center;
	float: none;
	margin: 0;
}
.nav-tabs.steps > li > a {
	display: block;
	position: relative;
	text-decoration: none;
	color: #000;
	padding: 0;
	border: 0;
	margin: 0;
	line-height: inherit;
}
.nav-tabs.steps > li > a::before{
	content: "";
	position: absolute;
	height: 4px;
	background-color: #5bc0de;
	top: 20px;
	width: 100%;
	left: 0;
}
.nav-tabs.steps > li:first-child > a::before{
	left: 50%;
}
.nav-tabs.steps > li:last-child > a::before{
	right: 50%;
	width: 50%;
	left: auto;
}
.nav-tabs.steps > li > a > span:first-child {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #5bc0de;
	border-radius: 100px;
	display: block;
	margin: 0 auto 5px;
	font-size: 16px;
	text-align: center;
	position: relative;
	color: #fff;
	font-weight: 800;
}
.nav-tabs.steps > li.disabled,
.nav-tabs.steps > li.disabled > a,
.nav-tabs.steps > li.disabled > a > span {
	cursor: not-allowed;
}
.nav-tabs.steps > li.disabled > a::before,
.nav-tabs.steps > li.disabled > a > span:first-child {
	background-color: #ccc;
}
.nav-tabs.steps > li.active > a::before,
.nav-tabs.steps > li.active > a > span:first-child {
	background-color: #337ab7;
}
.nav-tabs.steps > li.active > a,
.nav-tabs.steps > li.active > a:focus,
.nav-tabs.steps > li.active > a:hover {
	border: 0;
	background-color: transparent;
}