@import url(https://fonts.googleapis.com/css?family=Montserrat);
/*Loader CSS Start Here*/
.loader {
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.loader-img {
    border: 12px solid #fcf4d9;
    border-top: 12px solid #00aaa0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: loader 1.5s linear infinite;
    -moz-animation: loader 1.5s linear infinite;
    -o-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
    position: absolute;
    top: 45%;
    left: 45%;
    -webkit-transform: translate(50%,50%);
    -moz-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    -o-transform: translate(50%,50%);
    transform: translate(50%,50%);
}
@keyframes loader {
    0% { 
      -webkit-transform: rotate(0deg);
      -moz-transform:    rotate(0deg);
      -ms-transform:     rotate(0deg);
      -o-transform:      rotate(0deg);
      transform: rotate(0deg); 
    }
    100% { 
      -webkit-transform: rotate(360deg);
      -moz-transform:    rotate(360deg);
      -ms-transform:     rotate(360deg);
      -o-transform:      rotate(360deg);
      transform: rotate(360deg); 
    }
}
/*Loader CSS End Here*/

/*Multi Step Form Start Here*/
#multi-step-form {
    margin: 0px auto;
    text-align: center;
    position: relative;
}
#multi-step-form fieldset {
    background: #285d96;
    border: 0 none;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    padding: 16px;
    border-radius: 10px;
    color: #fff;
}
/*Hide all except first fieldset*/
#multi-step-form fieldset:not(:first-of-type) {
	display: none;
}
/*imputs error border*/
#multi-step-form input.step_required.error, #multi-step-form textarea.step_required.error{
	border: 2px solid #ff7a5a;
}
#multi-step-form input.step_required2.error, #multi-step-form textarea.step_required2.error{
	border: 2px solid #ff7a5a;
}

/*inputs*/
#multi-step-form textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #000;
	font-size: 13px;
}
#multi-step-form input {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #000;
	font-size: 13px;
}
/*buttons*/
#multi-step-form .action-button {
    width: 100px;
    background: #ef7f1b;
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 10px 15px;
    margin: auto;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
}

.form-group label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
    color: #fff;
}

/*CSS for Title*/
.step-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}
.step-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #FF7A5A;
	margin-bottom: 20px;
}

/*CSS for Progressbar*/
#progressbar {
	margin-bottom: 10px;
	overflow: hidden;
	counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: #285d96;
    text-transform: uppercase;
    font-size: 9px;
    width: 50%;
    float: left;
    position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 26px;
	line-height: 26px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*CSS for progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#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: #285d96;
	color: white;
}


/* The alert message box */

#multi-step-form #message{
	margin:0 10%;
} 

.alert {
    padding: 10px;
    background-color: #ff7b5a;
    color: #ffffff;
    margin-bottom: 6px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}
/*.validate{
	float: right;
	clear: both;
	margin-bottom: 0px;
	color: #FF7A5A;
	font-size: 15px;
	position: absolute;
	right: 40px;
	margin-top: 13px;	
	background-image: url('assets/img/warning.png'); 
}*/