/*progress step styling*/



.cla-step-progress-container {
	height: 60px;	
	background:#FFFFFF;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 1% 0 0 0;	
	padding:10px 20px 10px 0;
	text-align: center;
	position: relative;
	z-index: 0;
	border: 1px solid #00549B;
}

#cla-step-progress a,#cla-step-progress a:visited {
	text-decoration:none;
	color:#111111;
}
#cla-step-progress {
	margin-bottom: 30px;
	-webkit-padding-start: 10px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#cla-step-progress li {
	list-style-type: none;
	text-transform: uppercase;
	font-size: .65em;
	/*font-weight:bold;*/
	width: 1em;/*this is the number of steps*/
	float: left;
	position: relative;
}

@media only screen and (min-width: 200px) and (max-width: 500px){
	#cla-step-progress li{
		text-transform: none;
	}
}
#cla-step-progress .cla-step-active{
	color: #111111;
}
#cla-step-progress li:before {
	content: counter(step);
	counter-increment: step;
	width: 22px;
	line-height: 20px;
	display: block;
	font-size: 1.333em;
	color: #000000;
	background: #DFDFDF;
	border-radius: 11px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	margin: 0 auto 5px auto;
}
/*cla-step-progress connectors*/
#cla-step-progress li:after {
	content: '';
	width: 100%;
	height: 4px;
	background: #DFDFDF;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#cla-step-progress li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#cla-step-progress li.cla-step-active:before,  #cla-step-progress li.cla-step-active:after{
	background: #0059a6;
	color: #FFFFFF;
}
#cla-step-progress li.cla-step-completed:before,  #cla-step-progress li.cla-step-completed:after{
	background: #0059a6 ;
	color: #FFFFFF;
}
#cla-step-progress li.cla-step-pending:before,  #cla-step-progress li.cla-step-pending:after{
	background: #DFDFDF;
	color: #111111;
}


#cla-step-progress li:first-child:nth-last-child(1) {
	width: 100%
}

#cla-step-progress li:first-child:nth-last-child(2),
#cla-step-progress li:first-child:nth-last-child(2) ~ li {
	width: 50%
}

#cla-step-progress li:first-child:nth-last-child(3),
#cla-step-progress li:first-child:nth-last-child(3) ~ li {
	width: 33%
}

#cla-step-progress li:first-child:nth-last-child(4),
#cla-step-progress li:first-child:nth-last-child(4) ~ li {
	width: 25%
}

#cla-step-progress li:first-child:nth-last-child(5),
#cla-step-progress li:first-child:nth-last-child(5) ~ li {
	width: 20%
}

#cla-step-progress li:first-child:nth-last-child(6),
#cla-step-progress li:first-child:nth-last-child(6) ~ li {
	width: 16.6%
}