/* Contact Form */

.contact-button, .contact-modal input[type="submit"]{
	background: #fe9700;
	display: block;
	border-radius: 5px;
	box-sizing: border-box;
	font: 22px/40px 'FuturaPTLight', Helvetica, sans-serif;
	cursor: pointer;
	color: white;
	margin: auto;
}
.contact-button:hover{
	background: #ffb64b;
}

.contact-button.fixed-side{
	position: fixed;
	width: 140px;
	height: 60px;
	top: 160px;
	right: 0;
	-webkit-border-bottom-right-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	line-height: 2.8em;
	text-align: center;
}

.contact-button.fixed-side:before{
	/*content: 'Get Started';*/
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
	height: 1.75em;
	color: white;
}

.contact-button.customize-report{
	position: relative;
	display: block;
	width: 250px;
	height: 55px;
	text-align: center;
	margin: 40px auto 0;
	color: white;
	line-height: 2.65em;
}

.contact-button.customize-report:before{
	/*content: 'Customize Your Report';*/
	color: white;
	line-height: 2.65em;
}

.contact-modal {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2000;
	color: #3b3b3b;
}
.contact-modal .wpcf7{
	display: block;
	position: fixed;
	top: 50px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	/* background: white; */
	padding: 30px;
	overflow: scroll;
	padding-bottom: 50px;
}

form.wpcf7-form {
    width: 520px;
    height: 600px;
    display: block;
    background: white;
    padding: 35px;
    position: absolute;
    margin: auto;
    top: 140px;
    right: 0;
    left: 0;
    border-radius: 5px;
    margin-bottom: 150px;
}

.contact-modal p {
	margin-bottom: 10px;
}

.contact-modal .close{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 1em;
	height: 1em;
	display: block;
	cursor: pointer;
}

.contact-modal .close:before{
	content: 'x';
	display: block;
	font: 29px/40px 'FuturaPTLight', Helvetica, sans-serif;
	line-height: 0.5em;
}

.contact-modal .heading{
	line-height: 1.2em;
	text-align: center;
	padding: 0 6em;
	font-size: 18px;
}

.contact-modal input:not([type="submit"]), .contact-modal textarea {
	border: none;
	background: #ebebeb;
	padding: 6px;
	margin-top: 10px;
}

.contact-modal input:not([type="submit"]), .contact-modal textarea {
	width: 100%;
}

.contact-modal input[type="submit"]{
	border:none;
	width: 150px;
	margin-top: 40px;
}

.contact-modal.open{
	display: block;
}

.contact-modal.open:before{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	background: #161927;
	opacity: .5;
}

/*Form Alerts*/
div.wpcf7-response-output {
    border: none;
    background: white;
    padding: 15px;
    border-radius: 5px;
    line-height: 1em;
    text-align: center;
}


/*Error Message*/
span.wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
}

.wpcf7-validation-errors {
    color: red;
}

/*Verified*/
.wpcf7-mail-sent-ok {
    color: #398f14;
}