
.registrationForm{
	width: 55em;
	padding: 3em;
}

.registrationForm input{
	width: 175px;
}

.registrationForm input[type="checkbox"]{
	font-weight: bold;
	opacity: 100;
}

.registrationForm .clearFloat{
	float: none;
}

.registrationForm label{
    width: 13em;
    display: block;
    float: left;
    font-weight: bold;
}

.registrationFormBorder{
	background: #f5f5f5;
	border: 1px solid #FFF;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 2px 4px rgba(0,0,0,.4);
}

.registrationForm span{
	color: red;
}

span + .registerSalutationTitle {
	margin-left: 1em;
}

.formGroupRegister {
	margin-left: 13em;
}

.formGroupRegister input {
	margin-bottom: 4px;
}

.formGroupRegister > div > input:first-of-type + .addressError {
	margin-right: 5rem;
}


.processStepsContainer {
    width: 720px;
    margin: 25px auto; 
    padding-bottom: 50px;
}

.processStepsProgressbar {
    counter-reset: step;
}

.processStepsProgressbar .li{
    list-style-type: none !important;
    width: 20% !important;
    float: left !important;
    font-size: 12px !important;
    position: relative !important;
    text-align: center !important;
    text-transform: uppercase !important;
    color: #7d7d7d !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.processStepsProgressbar .li:hover{
	box-shadow: none !important;
}

.processStepsProgressbar .li:before {
    width: 30px !important;
    height: 30px !important;
    content: counter(step) !important;
    counter-increment: step !important;
    line-height: 27px !important;
    border: 2px solid #7d7d7d !important;
    display: block !important;
    text-align: center !important;
    margin: 0 auto 10px auto !important;
    border-radius: 50% !important;
    background-color: white !important;
}

.processStepsProgressbar .li:after {
    height: 2px !important;
    content: '' !important;
    position: absolute !important;
    top: 15px !important;
    left: -50% !important;
    z-index: -1 !important;
}

.processStepsProgressbar .li:first-child:after {
    content: none !important;
}

.processStepsProgressbar .li.active {
    color: green !important;
}

.processStepsProgressbar .li.active:before {
    border-color: #55b776 !important;
}

.processStepsProgressbar .li.active + .li:after {
    background-color: #55b776 !important;
}

