.progress-indicator {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin: 0 0 1em;
	padding: 0;
	font-size: 80%;
	text-transform: uppercase;
	font-weight: bold;
}
	
.progress-indicator > li {
	-ms-flex: 1;
	-webkit-flex: 1;
	-moz-flex: 1;
	flex: 1;
	list-style: none;
	text-align: center;
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
	text-overflow: ellipsis;
	color: #bbb;
	display: block;
	z-index: 1;
}			

.progress-indicator > li .bubble {
	border-radius: 1000px;
	width: 20px;
	height: 20px;
	background-color: #bbb;
	display: block;
	margin: 0 auto .5em;
	border-bottom: 1px solid #888;
}
	
.progress-indicator > li .bubble:after,
.progress-indicator > li .bubble:before {
	display: block;
	position: absolute;
	top: 9px;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #bbb;
	z-index: -1;
}

.progress-indicator > li .bubble:before {
	left: 0;
}

.progress-indicator > li .bubble:after {
	right: 0;
}

.progress-indicator > li:first-child .bubble:after,
.progress-indicator > li:first-child .bubble:before{
	width: 50%;
	margin-left: 50%;
}

.progress-indicator > li:last-child .bubble:after,
.progress-indicator > li:last-child .bubble:before {
	width: 50%;
	margin-right: 50%;
}

.progress-indicator > li.completed,
.progress-indicator > li.completed .bubble {
	color: #65d074;	
	background-color: white !important;	
}

.progress-indicator > li.completed .bubble,
.progress-indicator > li.completed .bubble:after,
.progress-indicator > li.completed .bubble:before {
	background-color: #65d074;
	border-color: #247830;
}	

.progress-indicator > li.active,
.progress-indicator > li.active .bubble {
	color: #337AB7;
	background-color: white !important;
}

.progress-indicator > li.active .bubble,
.progress-indicator > li.active .bubble:after,
.progress-indicator > li.active .bubble:before {
	background-color: #337AB7;
	border-color: #122a3f;
}	
	
@media handheld, screen and (max-width: 400px) {
	.progress-indicator {
		font-size: 80%;
	}
}		

@media (min-width: 48em) {
	.progress-indicator .hidden-xs {
		display: inline !important;
	}
}