/*
	@version - 0.1
	@author - Jovan Stojanovic - http:jovanstojanovic.com
	@twitter -  @joshica
 */

/*
div#progressBar {
    width: 350px; 
    height: 80px;
	margin-top:-25px;
}*/


.visuallyhidden {
    display: none;
}

.wizard-progress {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;   
    float: left;
    white-space: nowrap;
}

.wizard-progress li {
    float: left;
    margin-right: 50px;
    text-align: center;
    position: relative;
    width: 55px;
}
.wizard-progress li:last-child{ margin-right:0;}

.wizard-progress .step-name {
    display: table-cell;
    height: auto;
    vertical-align: bottom;
    text-align: center;
    width: 100px;
	font-size:11px;
	color:#666;
}

.active-step{
	color:rgb(69, 149, 216);
}

.wizard-progress .step-name-wrapper {
    display: table-cell;
    height: 100%;
    vertical-align: bottom;
}

.wizard-progress .step-num {
    font-size: 14px;
   /* font-weight: bold;*/
    border: 1px solid #ccc;
    border-radius: 15%;
    width: 18px;
    display: inline-block;
    margin-top: 10px;
	background:#fff;
	padding:2px;
	font-weight:bold;
	color:#ddd;
}

.wizard-progress .step-num:after {
    content: "";
    display: block;
    height: 4px;
    width: 105px;
    position: absolute;
    bottom: 8px;
    left: 39px;
	background:rgb(204, 204, 204);
}

.wizard-progress li:last-of-type .step-num:after {
    display: none;
}

.wizard-progress .active-step .step-num {
    background-color: rgb(69, 149, 216);
	border:solid 1px rgb(69, 149, 216);
	color:#fff;
}
