@charset "utf-8";
/* CSS Document */


/* Financing Form Styles */

.flex-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#formpage {
	width:100%;
	vertical-align: top;
	display:inline-block;
	text-align:left;
   box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 30px;box-sizing: border-box;
}

#formpage p{
	text-align:left;
}
#formpage h4{margin-top:30px;}


#formpage input,select {
	padding: 10px;
	border: 1px solid #f1f1f1;
	font-family: 'Raleway', sans-serif !important;
	color: #000;
	font-size: 15px;
    border-radius: 2px;
	background:#F2f2f2;
	width: 100%;
	box-sizing: border-box;
}

#formpage input:focus {
	border: 1px solid #eaeaea;
	border-radius:2px
}

#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 {
	background:#0888ca; 
	color:#fff;
	padding:10px;
	text-decoration:none;
	border-radius:2px;
	transition:ease-in .3s;
	border:none;
	height:auto;
}



#formpage input.submit-button:hover{
	background:#0888ca; 
	box-shadow:1px 1px 2px #848484;
	transition:ease-out .3s;
}

input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
}

#formpage textarea {
	padding: 10px;
	border: 1px solid #f1f1f1;
	color: #000;
	font-size: 15px;
	background: #f2f2f2;
	height: 85px;
	border-radius:2px;
	width: 100%;
	box-sizing: border-box;font-family: 'Raleway', sans-serif !important;
}

#formpage textarea:focus{
	border: 1px solid #eaeaea;
	border-radius:2px
} 

.CaptchaPanel{}

.CaptchaImagePanel img{width:200px;max-width: 100%;}

.CaptchaAnswerPanel{
	    width: 100% !important;
    margin: 0 auto;
    max-width: 250px;
    box-sizing: border-box;
}
.CaptchaWhatsThisPanel a{color:#333;}

.submit-button{
	padding:10px 0px 10px 0px;
	position:relative;
	text-align:center;
}
.CaptchaPanel {
    margin: 10px 0px 0 0px !important;
}

#formpage button.yellow-btn {
    width: 100%;
}
/*end form styles*/
