@charset "utf-8";
/* CSS Document */


/* Financing Form Styles */


.flex-form{
	width:100%;
	text-align: left;
	margin: 0 auto;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 15px;
	font-family: 'exoregular', sans-serif;
}

.flex-form h3{
	width:100%;
	text-transform: uppercase;
	font-weight: 600;
	border-top:2px solid #eee;
	padding:20px 0 20px 0;
	margin-top:40px;
}

.flex-form h4{
	width:100%;
	text-transform: uppercase;
	font-weight: 600;
	margin-top:40px;
	padding:10px 0;
	font-size: 16px;
}
.flex-form label{font-weight: normal;}

.flex-form span{text-align: left; margin: 0; font-size: 12px;}


.flex-form #formpage input, select{}

.flex-form .flex-row{
	display: flex; 
	justify-content: space-between; 
	align-items: flex-end; 
	width: 100%;
}

.flex-border{
	border:2px solid #eee;
	padding:20px;
}

.flex-input{
	display: flex;
    flex-direction: column;
    text-align: left;
    font-family: 'exoregular', sans-serif;
	width: 100%;
	    margin-right: 10px;
}



#formpage {
	display: flex;
    width: 100%;
    margin-top: 40px;
}

.formfield {
	width: 100%;
	display:inline-block;
	margin-right: 10px;
	margin-top: 10px;
	min-width: 175px;
	text-align:left;
}

#formpage input,select {
	border: 1px solid #f1f1f1;
	font-family: 'exoregular', sans-serif;
	color: #000;
	font-size: 18px;
    border-radius: 20px;
	background:#f1f1f1;
	padding: 10px 15px;
	display: inline;
	    margin-right: 10px;
}

#formpage input:focus {
	border: 1px solid #eaeaea;
	border-radius: 20px;
}

#formpage option{color:#333;background:#fff;}

/*===PLACEHOLDER TEXT STYLES===*/

#formpage ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #767676;
}
#formpage ::-moz-placeholder { /* Firefox 19+ */
  color: #767676;
}
#formpage :-ms-input-placeholder { /* IE 10+ */
  color: #767676;
}
#formpage :-moz-placeholder { /* Firefox 18- */
  color: #767676;
}
#formpage input.submit-button, #formpage input.submit-button:focus {
		padding: 10px;
    position: relative;
    min-width: 100px;
    display: inline;
    vertical-align: middle;
	font-family: 'exoregular', sans-serif;
	font-size: 18px;
	font-weight: bold;
	
	background-color: #fff;
    border-radius: 20px;
    border: none;
    width: auto;
    height: 40px;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #000099;
    text-align: center;
    text-decoration: none;
	cursor: pointer;
}



#formpage input.submit-button:hover{
	background-color: #BCBCBC;
	color: #000099;
	transition:ease-out .3s;
}

input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
}

#formpage textarea {
	padding: 6px 5px;
	border: 1px solid #f1f1f1;
	color: #000;
	font-size: 16px;
	background: #f1f1f1;
	width: 100%;
	height: 85px;
	border-radius:2px;
	margin-top:10px;
	display: inline;
}

#formpage textarea:focus{
	border: 1px solid #eaeaea;
	border-radius:2px
} 

.CaptchaPanel{width:100%;}

.CaptchaImagePanel img{width:200px;}

.CaptchaAnswerPanel{
	width:250px;
}
.CaptchaWhatsThisPanel a{color:#333;}

.submit-button{
	padding: 10px;
    position: relative;
    min-width: 100px;
    display: inline;
    vertical-align: middle;
	font-family: 'exoregular', sans-serif;
	font-size: 18px;
	font-weight: bold;
	
	background-color: #fff;
    border-radius: 20px;
    border: none;
    width: auto;
    height: 40px;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #000099;
    text-align: center;
    text-decoration: none;
	cursor: pointer;
}

.submit-button:hover {
	background-color: #BCBCBC;
	color: #000099;
}
/*end form styles*/


@media screen and (max-width: 1170px)  {
	.form-half{width: 46%;}
}

@media screen and (max-width: 900px)  {
	.flex-form .flex-row{flex-wrap: wrap;}
}

@media screen and (max-width: 700px)  {
	.form-half{width: 98%;}
}

@media screen and (max-width: 450px)  {
	.add-part{padding: 20px;}
}

