/* CSS Document */
@import "preview.css";


.form-wrapper {
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 35px;
    background-color: rgba(255,255,255,0.95);
    border-radius: 15px;
	padding: 40px 40px;
}


.sections{
	position:unset;
	clear:both;
	    min-height: 400px;
    overflow: hidden;

}
.form-wrapper .input-lg {
    height: 50px;
    font-size: 20px;
	border-radius:50px;
}
.sections .section-holder.bottomsec {
    position: absolute;
    bottom: 0px;
}

.sections .section-holder{
	position:relative;
	width:100%;
	clear:both;
}

.sections .section{
	display:none;
	top:0;
	left:0;
	min-width:100%;
	max-width:400px;
}

.sections .current{
	display:block;
}


.progress-bar .progress{
	position:relative;
	width:0;
	height:25px;
	background-color:#9C0;
}

.progress-bar .progress-text{
	position:relative;
	width:100%;
	height:25px;
	line-height:25px;
	text-align:center;
	color:#fff;
	top:-24px;
}

.sections .back{
	float:left;
}

.sections .next, .sections .submit{
	float:right;
}

.sections .back, .next {
	cursor:pointer;
	margin:10px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:normal;
	color: #777;
	padding: 3px 20px;
	background: -moz-linear-gradient(
		top,
		#ebebeb 0%,
		#c2c2c2);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#ebebe),
		to(#c2c2c2));
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 30px;
	border: 1px solid #a6a6a6;
}

.sections .back:hover, .sections .next:hover {
	cursor:pointer;
	margin:10px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
	padding: 3px 20px;
	background: -moz-linear-gradient(
		top,
		#78b9ff 0%,
		#78e4ff);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#78b9ff),
		to(#78e4ff));
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border: 1px solid #09c;
}

.sections .submit input[type=submit]{
	cursor:pointer;
	margin:10px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:normal;
	color: #000;
	padding: 5px 20px;
	background: -moz-linear-gradient(
		top,
		#78b9ff 0%,
		#78e4ff);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#78b9ff),
		to(#78e4ff));
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border: 1px solid #09c;
}

.sections .focus{
	border:2px solid #09c;
	border-radius:25px;
}

.sections .valid, 
.sections input[type=text].valid, 
.sections input[type=password].valid, 
.sections input[type=email].valid,
.sections input[type=checkbox].valid{
	border: 1px solid rgba(153, 204, 0, 1);
	border: 1px solid #9C0;
}

.sections .invalid, 
.sections input[type=text].invalid, 
.sections input[type=password].invalid, 
.sections input[type=email].invalid{
	border: 1px solid rgba(255, 0, 0, 1);
	border: 1px solid #F00;
}

.sections label {
	width:100%;
	display:block;
}

.sections input[type=text],
.sections input[type=password], 
.sections input[type=email], 
.sections select,
.sections textarea{
	width:100%;
	outline:none;
	padding: 0 0 0 10px;
	padding: 10px 0;
	text-indent:10px;
	display:inline-block;
	line-height: 18px;
	float:left;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
	margin: 5px 1px 3px 0px;
	color:#000;
	border:1px solid #888;
}

.sections input placeholder, 
.sections input placeholder, 
.sections select placeholder,
.sections textarea placeholder{
	color:#555;
}

.sections input[type=text]:focus, 
.sections input[type=password]:focus, 
.sections input[type=email]:focus, 
.sections select:focus,
.sections textarea:focus{
	padding: 3px 0px 3px 3px;
	margin: 5px 1px 3px 0px;
	border: 1px solid rgba(81, 203, 238, 1);
	border: 1px solid #09c;
	padding:10px 0;
	text-indent:10px;
	display:inline-block;
	line-height: 18px;
}


.sections select {
	-webkit-appearance: none;            /*Removes default chrome and safari style*/
	-moz-appearance: none;             /* Removes Default Firefox style*/
	text-overflow: "";               /*Removes default arrow from firefox*/
}

.sections .form-title, .sections .section-title{
	font-size:20px;
	font-weight:bold;
	color:#999;
	text-align:center;
	margin-bottom:10px;
}
.sections .form-title{
	font-size:24px;
	border-bottom:2px solid #ededed;
}

.sections strong{
	color:#09c;
}

.sections h1, .sections h2{
	color:#000;
	font-size:22px;
}

.sections p{
	font-weight:normal;
}

.sections p.line{
	width:100%;
	border-bottom:1px solid #78b9ff;
	margin:10px 0;
	height:1px;
}

.sections .submit-data{
	padding:10px;
	border:1px solid #ccc;
	cursor:pointer;	
}


/* ------- Email Format -------- */
.email-format{
	color:#09c;
	font:bold 12px Arial, Helvetica, sans-serif;
}

.email-format-title{
	color:#000;
	font:bold 22px Arial, Helvetica, sans-serif;
}

.email-format-wrapper{
	width:100%;
	background:#EBEBEB;
	margin:0;
	padding:20px;
}

.email-format-body{
	color:#000;
	width:320px;
	background:#fff;
	margin:20% auto;
	padding:20px;
	border:1px solid #E0E0E0;
	font:12px Arial, Helvetica, sans-serif;
}

.none{
	display:none;
}

#preloader {
	position:relative;
	text-align:center;
	visibility:visible;
}

#preloader img{
	background:#fff;
}

label.next.btn.btn-warning.btn-block.btn-lg.btn-answer.btn-services {
    box-shadow: none;
    margin-bottom: 0px;
    font-size: 20px;
    padding: 11px 16px;
}

label.next.btn.btn-warning.btn-block.btn-lg.btn-answer.btn-services:hover {
    background: #db8300;
    border-color: #cc7a00;
	margin-top: 15px;
}

.validation-msg {
    position: inherit;
    top: 100%;
    font-size: 12px;
    color: #A94442;
    margin-left: 10px;
    float: left;
}

.highlights {
    height: 21px;
    overflow: hidden;
}

.text-success {
    color: #3c763d;
}

.glyphicon {
    position: relative;
    top: 1px;
	right: 5px;
	font-size: 14px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    -webkit-font-smoothing: antialias
  }

.glyphicon-ok:before {
    content: "\2713";
}

.new-location .col-xs-12.col-md-4 {
    float: left;
}

#thank-you {
    padding: 70px 15px;
    margin-bottom: 160px;
}

#thank-you h4 {
    margin-top: 20px;
}

#thank-you span.step-number {
    background-color: #575757;
    color: #fff;
    width: 20px;
    line-height: 1.5;
    height: 20px;
    float: left;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 3px;
}

.second-service .service {
    margin-bottom: 10px;
    position: relative;
}

.second-service .service svg {
    width: 43px;
    height: 43px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

svg:not(:root) {
    overflow: hidden;
}

.circle-orange {
    fill: #ffba5f;
    opacity: 0.3;
}

.circle-blue {
    fill: #64b5f6;
    opacity: 0.15;
}

.fill-dark {
    fill: #45636e;
}

.custom-checkbox {
    background-color: #fcfdfe;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
    display: block;
    position: relative;
    padding: 13px 10px;
    padding-left: 50px;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    user-select: none;
    transition: all .2s linear;
    box-shadow: 0 3px 8px 0 rgba(100,110,120,0.15);
}

.custom-checkbox input {
    position: absolute;
    right: 10px;
    top: 14px;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 14px;
    right: 10px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: solid 1px #ccc;
    border-radius: 2px;
    transition: all .3s linear;
}

.second-service-questions {
    padding: 15px 15px 5px;
    background-color: #f1f8ff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: inset 0 0 10px 0 rgba(100,110,120,0.2);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}
.service.ui-accordion-header-active .second-service-questions
{
	display:block !important;
}

#accordion .ui-accordion-content {
    height: auto !important;
}

.custom-checkbox .checkmark:after {
    position: absolute;
    top: 4px;
    left: 4px;
    content: '';
    width: 11px;
    height: 6px;
    border: solid 2px #fff;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}

.custom-checkbox input:checked ~ .checkmark:after {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width : 766px){
	
	#thank-you {
		margin-bottom: 0px;
	}
	
	header#headmast {
		background-color: #fbfdff;
		box-shadow: 0 2px 7px 0 rgba(0,0,0,0.1);
	}
	
	.sections .section-holder.bottomsec {
		position: inherit;
	}

} 

@media screen and (max-width : 768px){
	.second-service-form{
		margin-left:auto;
		margin-right:auto;
		flex: 0 0 70%;
		max-width: 70%;
	}
}

