#register {
	margin: 50px auto;
    position: relative;
    font-weight: 100;
}
#register fieldset {
	background: white;
    border-radius: 3px;
    border-color: #e4dbdb;
    padding-top: 20px;
    box-sizing: border-box;
    width: 74%;
    position: relative;
}
/*Hide all except first fieldset*/
#register fieldset:not(:first-of-type) {
	display: none;
}
#register .hide-on-load {
	display: none;
}
#register label {
    padding: 4px;
    font-weight: 100;
    font-size: 13px;
}
/*inputs*/
#register input, #register textarea, #register select {
	padding: 7px;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
	color: #2C3E50;
    font-size: 13px;
    background-color:white;
}
#register input {
    margin-bottom: 0;
}
#register input[type="radio"] {
    width: 21px;
}
#register input[type="checkbox"] {
    margin-right: 6px;
}
#register .input-field {
    margin-bottom: 20px;
}
#register .input-field label,input {
    display: block;
}
#register .input-field input,select {
    width: 40%;
}

#register .action {
    margin-top: 13px;
}
/*headings*/
#vmMainPage #register .fs-title {
	font-size: 17px;
    color: black;
    padding:0px 0px 10px;
}
.fs-subtitle {
    font-size: 13px;
    font-weight: 100;
    color: #666;
    padding: 0 0 10px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    text-align: center;
    width: 50%;
    -webkit-transform: translate(50%);
    -ms-transform: translate(50%);
    transform: translate(50%);

	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar .heading {
    font-size: 14px;
    color: #bdbcbc;
    font-weight: 600;
    padding-top: 8px;
    display: inline-block;
    text-transform: capitalize;
}
#progressbar .active {
    color: #800000;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 33px;
    line-height: 33px;
    display: block;
    font-size: 19px;
    color: white;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
    background-color: #bdbcbc;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 60%;
    background: #c5c2c2;
    position: absolute;
    left: -32%;
    top: 26px;
    border-bottom: 2px dotted #fffbfb;
}
#progressbar 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*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #800000;
	color: white;
}
#register .inline {
    padding-left: 4px;
}
#register .required img{
    width: 8px;
}
#register .red_txt {
    display: none;
}
#register .grey_txt {
    color: #585656;
    display: none;
}
#register .grey_txt a {
    color: #585656;
}
#register input[disabled ="disabled"] {
    background: #d4d4d4;
    cursor: not-allowed;
}
#register .flex-wrap {
    display: flex;
    flex-flow: wrap;
}
#register .flex-wrap > .item {
    flex: 1 1 0;
    margin-right: 32px;
}
#register .required {
    background-image: url(/images/icon_required_gray1.gif);
    width: 7px;
    height: 11px;
    display: inline-block;
}
#register .form-element-space {
    margin-top: 20px;
    margin-bottom: 20px;
}
#register .space-top {
    margin-top: 10px;
}
#register .space-top-lg {
    margin-top: 20px;
}
#register .space-bottom {
    margin-bottom: 10px;
}
#register #zipval {
    flex-basis: 100%;
}
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 645px) {
    #progressbar {
        width: 80%;
        -webkit-transform: translate(-10%);
        -ms-transform: translate(-10%);
        transform: translate(-10%);
    }
    #progressbar li:after {
        display: none;
    }
    #register fieldset {
        margin: 0;
    }
  }
