.wizard {
    margin: 0px auto;
    background: #fff;
}

.wizard .nav-tabs {
	position: relative;
	margin: 0px auto;
	margin-bottom: 0;
	border-bottom-color: #e0e0e0;
	border-bottom: 0;
}

.wizard > div.wizard-inner {
	position: relative;
}

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, 
.wizard .nav-tabs > li.active > a:hover, 
.wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 12px;
}
span.round-tab i{
    color:#555555;
}
.wizard-step li.active span.round-tab {
    background: #fff;
    border: 1px solid #4285f4;
    
}
.wizard-step li.active span.round-tab i{
    color: #4285f4;
}

span.round-tab:hover {
    color: #333;
    border: 1px solid #333;
}

.wizard-step .nav-tabs > li {
    width: 15%;
}


@media (max-width: 500px) {

    .wizard .nav-tabs > li {
		width: 20%;
	}


}	