/*custom font*/ 
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background-origin: padding-box;
	/*background-image: url("../graphic/bg.jpg");*/
	background-repeat: repeat;
    background-size: cover;
}

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
}


/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 10px;
	margin-bottom: 30px;
}

#msform fieldset {    
    border: 0 none;
    border-radius: 0px;   
    padding: 20px 30px;
    box-sizing: border-box;
   
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset {
    display: none;
	
}
#msform .activeSet {
	display:block;
}	


/*inputs*/
#msform input,#msform select, #msform textarea {
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 0px;
	margin-top: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 14px;
}
.note{
	
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ff7f27;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: auto;
    background: #ff7f27;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 18px;
    margin: 10px 5px;
	min-width:100px;
}

.nextSubmitBtn{
	width: auto;
    background: #ff7f27;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 18px;
    margin: 10px 5px;
	display: inline-block;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ff7f27;
}

#msform .action-button-previous {
    width: auto;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 18px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-top: 20px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
	margin-bottom: 0px;
	position:relative;
}
.buttonCont{margin-top:10px;}
#progressbar li {
    list-style-type: none;
    color:#2C3E50;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}
#progressbar::after {
    content: "";
    background: #000;
    width: 71%;
    position: absolute;
    top: 26%;
    left: 0;
    height: 2px;
    transform: translateY(-50%);
    left: 50%;
    transform: translate(-50%,-50%);
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 23px;
    display: block;
    font-size: 12px;
    color: #fff;
    background: #333333;
    border-radius: 25px;
    margin: 0 auto 10px auto;
	position: relative;	
	z-index: 1;
}

/*progressbar connectors*/
#progressbar li:after {

}

#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: #ff7f27;
    color: white;
	position: relative;
	z-index: 1;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ff7f27;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}
fieldset .formControl label{
	width: 33%;
	float: left;
	text-align: left;
	padding-top: 7px;
	font-size: 14px;
	font-weight: normal;
}
fieldset .formControl input,fieldset .formControl select{
	width: 66% !important;
}
fieldset h4{
	text-align: left;
	margin-top: 25px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	font-weight: bold;
	font-size: 15px;
}
fieldset code{
	text-align: left !important;
	margin-top: 13px;
	display: block;
	font-size: 12.5px;
}
.registerForm{
	margin: 0 10%;
	/*background: rgba(130,130,130,.3) !important; */
	padding-top: 30px;
	padding-bottom: 5px;
	background: white;
	border: 0 none;
	border-radius: 0px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
}
.termsCond a {
    margin-top: 17px;
    display: inline-block;
    padding-left: 5px;
}
.modal-header{
	background: #426858;
	color: #fff;
}
.modal-header .close {
    color: #fff;
	opacity: 0.7;
}