/**************************************************
Contact forms */
.jb-form label {
	display: none;
}
::placeholder {
	color: #C7C8CA
}
.reqDate {
	color: #C7C8CA;
}
.jb-form {
	width: 80%;
	background: #EDEDED;
	margin: 0 auto;
	padding: 45px;
}
.jb-form h2 {
	text-align: center;
	font-family: 'ubuntu', sans-serif;
	font-size: 40px;
}
.jb-form .formText {
	text-align: center;
	font-family: 'ubuntu', sans-serif;
	font-size: 14px;
	width: 60%;
    margin: 0 auto;
    margin-bottom: 25px;
}
.jb-form input[type="text"],
.jb-form input[type="tel"],
.jb-form input[type="email"],
.jb-form input[type="date"],
.jb-form textarea,
.jb-form select {
    display: block;
    color: #333;
    font: 115%/1.2 'ubuntu', sans-serif;
    margin: 0 auto;
    width: 100%;
    padding: 0.3em 0.4em;
    background: #fefefe;
    border: 1px solid #ccc;
    border-radius: 0.3em;
    box-shadow: inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.1);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.jb-form input[type="text"]:focus,
.jb-form input[type="tel"]:focus,
.jb-form input[type="email"]:focus,
.jb-form textarea:focus,
.jb-form select:focus {
    border-color: #aaa;
    box-shadow: inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.05);
}
.jb-form .captcha img {
    max-width: 100%;
    vertical-align: middle;
    margin: 0.5em 0;
}
.jb-form .captcha-container {
    background-color:transparent;
}
.jb-form .g-recaptcha {
    display: inline-block;
    vertical-align: middle;
}
.jb-form #code {
    width: 8em;
    display: inline;
    margin-left: 0.6em;
}
.jb-form input.OK {
    /*background-color:#CFC;*/
}
.jb-form input.error,
.jb-form textarea.error {
    background-color: #FCC;
    cursor: help;
}
p.error {
	background-color:transparent;
	font-weight: bold;
}
.subBtn {
	background: #5D9500;
	border-radius: 2px;
	color: #FFF;
	font-family: 'ubuntu', sans-serif;
	padding: 15px 25px 15px 25px;
	
}
.btnBody {
	width: 100%;
	text-align: center;
	margin-top: 50px;
}
#dropbox {
	transition: all 2s ease 1s;
	margin-bottom: 25px;
}
.imgBtn {
	background: #5D9500;
	border-radius: 2px;
	color: #FFF;
	font-family: 'ubuntu', sans-serif;
	font-size: 20px;
	padding: 20px 35px 20px 35px;
	margin: 0 auto;
}
.topButton {
	text-align: center;
}
/************************************************************
RESPONSIVE */
/* Mobile(ish) */

@media screen and (max-width: 670px) {
 	.jb-form h2 {
	 	font-size: 30px;
 	}
 	.jb-form {
	 	width: 100%;
 	}
 	.jb-form .formText {
	 	width: 80%;
 	}
 	.imgBtn {
	 	white-space: normal; 
	 	width: 90%;
	}
}