@charset "utf-8";
.contact-form {
    width: 100%;
    padding: 100px 0;
    text-align: left;
    margin-top: 100px;
    border-top: 1px solid #eaeaea;
}
.contact-form h3 {
    text-transform: uppercase;
}
#formpage {
    width: 100%;
    vertical-align: top;
    display: inline-block;
    text-align: left;
}
#formpage p {
    text-align: left;
}
.formwrapper {
    border: 1px #c3c3c3 solid;
    margin: 15px 5px;
}
.formfield {
    width: 100%;
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
    color: #F89520;
    min-width: 175px;
    text-align: left;
}
.formfield p {
	color: #333;
}
#formpage h4 {
    color: #444;
}
#formpage label {
    font-weight: 600;
    color: #333;
}
#formpage span {
    color: #720001;
}
#formpage div {
    vertical-align: top;
    padding: 5px;
    position: relative;
}
#formpage input,
select {
    padding: 6px 5px 10px;
    border: 1px solid #333;
    font-family: "Source Sans Pro", sans-serif;
    color: #000;
    font-size: 16px;
    background: rgba(255,255,255,0.30);
    width: 100%;
    margin-top: 5px;
    border-radius: 2px;
    height: 40px;
}
#formpage input:focus {
    background: #f7bb74;
    border: 1px solid #f7bb74;
    border-radius: 2px;
}
#formpage option {
    color: #333;
    background: #fff;
}
#formpage::-webkit-input-placeholder {
    color: #767676;
}
#formpage::-moz-placeholder {
    color: #767676;
}
#formpage:-ms-input-placeholder {
    color: #767676;
}
#formpage:-moz-placeholder {
    color: #767676;
}

#formpage input.checkbox {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:13px;
    height:13px;
    display:inline;
    background-color:#fff;
 }

#formpage input.submit-button,
#formpage input.submit-button:focus {
    background: #E16C32;
    color: #111;
    padding: 10px;
    text-decoration: none;
    border-radius: 2px;
    transition: ease-in 0.3s;
    width: 150px;
    border: none;
    height: auto;
}
#formpage input.submit-button:hover {
    background: #E16C32;
    box-shadow: 1px 1px 2px #848484;
    transition: ease-out 0.3s;
}
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
}
#formpage textarea {
    padding: 6px 5px;
    border: 1px solid #333;
    font-family: "Source Sans Pro", sans-serif;
    color: #333;
    font-size: 16px;
    background: rgba(255,255,255,0.30);
    margin-top: 5px;
    width: 100%;
    height: 85px;
    border-radius: 2px;
}
#formpage textarea:focus {
    background: #f7bb74;
    border: 1px solid #333;
    border-radius: 2px;
}
.CaptchaPanel {
    width: 100%;
}
.CaptchaImagePanel img {
    width: 200px;
}
.CaptchaAnswerPanel {
    width: 250px;
}
.CaptchaWhatsThisPanel a {
    color: #333;
}
.submit-button {
    padding: 10px 0;
    position: relative;
    width: 100%;
    text-align: center;
}





form.search-form {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
	width:100%; 
	margin:0 0 0 auto;
}
.search-form input[type="text"],
.search-form select{
    /*width: calc(100% - 34px);*/
	width:calc(49% - 41px);
    height: 72px;
    margin: 0;
    font-size: 19px;
    line-height: 1;
    text-indent: 15px;
	
	font-weight:200; 
    color: #222;
    box-sizing: border-box;
    border-radius: 5px;
	border:1px #ededed solid;
	border-bottom:3px #000 solid;
	background:#f8f8f6; 
	font-family: "archivo", sans-serif;
}
.search-form input[type="text"]:focus,
.search-form select:focus{
	border:1px #f5f5f5 solid;
	border-bottom:3px #E16C32 solid;
    background-color: #f9f9f9;
}
.search-form button[type="submit"] {
    position: relative;
	z-index:1; 
	cursor: pointer;
    width: 82px;
    height: 72px;
    margin: 0;
    padding: 0;
	font-size:22px;
	color:#fff;
    border: none;
    border-radius: 5px;
	background:#E16C32; 
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
	font-family: "Font Awesome 5 Free"; 
}

.search-form button[type="submit"]:hover {color:#E16C32; background:#111;}
.search-form button[type="submit"]:focus {color:#fff; background:#000;}


@media screen and (max-width: 465px) {	

	.state-search {display:none;}
	.search-form input[type="text"]{
		width:calc(98% - 82px);}
	
}

