@import url(http://fonts.googleapis.com/css?family=Montserrat);

body  {
	/*background: radial-gradient(rgba(180,200,214,1), rgba(84,123,150,1)) !important;*/
background-color: rgba(0, 0, 0, 0)!important;
}
body {
	font-family: montserrat, arial, verdana !important;
}
/*form styles*/
label {
    font-weight: normal !important;
	font-size: 14px;
	color: black;
	margin:0px !important;
}

form h2{
	font-weight:bold;
}
form h3{
	border-bottom: solid 1px !important;
}
@media only screen and (max-width: 550px) {
    form h2{
		margin-top:0px;
		font-size: 22px;
	}
    form h3{
		margin-top:0px;
		font-size: 16px;
	}	
	
	.previous{
		margin-bottom:10px !important;
	}
}

.popover-danger {
	background-color: #d9534f;
	border-color: #d43f3a;
	color: white;
}

.popover-danger.right .arrow:after {
	border-right-color: #d9534f;
}

.required  { 
    color: #d00;
    margin-left: 2px;
	font-family: 'Glyphicons Halflings';
	font-weight: normal;
	font-size: 14px;	
}

.msform{
	margin-top:20px !important;
	margin-bottom:40px !important;
	background: white;
	border: 0 none;
	/*border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);*/
	padding: 20px 30px;
	box-sizing: border-box;
	width: 98%;
	margin: 0px;
	/*stacking fieldsets above each other*/
	position: absolute;	
	z-index: 1;
	
}
.msform > fieldset {

}
/*Hide all except first fieldset*/
.msform fieldset:not(:first-of-type) {
display: none;
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	padding-left:0px !important;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
	text-align: center;
}
@media only screen and (max-width: 550px) {
    #progressbar {
		margin-bottom: 0px !important;
	}
}
#progressbar li {
	list-style-type: none;
	color: black;
	text-transform: uppercase;
	font-size: 9px;
	width: 16%;
	float: left;
	position: relative;

}
@media only screen and (max-width: 550px) {
    #progressbar li  span{
        text-indent: -9999px;
		visibility: hidden;
    }
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 40px;
	line-height: 40px;
	display: block;
	font-size: 10px;
	color: #333;
	/*background: #ccc;*/
	background: #ccc;
	border-radius: 3px;
	margin: 0 auto 5px auto;
	z-index: 2;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	/*background: #ccc;*/
	background: rgba(39, 174, 96, 0.25);
	position: absolute;
	left: -50%;
	top: 20px;
	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: #27AE60;
	color: white;
}

	