
form {margin:0px;padding:0px;box-sizing:border-box;}
input[type="search"] {-webkit-appearance: textfield;}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {-webkit-appearance: none;}
input,select,textarea  {
	color:var(--primary-color);
	font-size:15px;
	line-height:24px;
	font-family: var(--sf-r);
	font-weight: 400;
	border:1px solid #e0e0e0; 
	background-color:#fff;
	padding:5px 12px;
  	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width:100%;
	box-sizing:border-box;
	box-shadow:none;
	height:42px;
}
select {
	background: url(../../images/firefox_tweak.png) no-repeat ;
	background-position: 96% 19px;
	-webkit-appearance: none;  /*Removes default chrome and safari style*/
    -moz-appearance: none;
}
textarea {height:70px;}
input[type="radio"] ,input[type="checkbox"] {
	width:15px;
	height: 15px;
	margin: 0 2px;
    vertical-align: middle;	
}
input[type=file]{ 
	padding: 0px;
    border: 0px;
    /*width: 38%;*/
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
	box-sizing:border-box;
}
.Col1 ,.Col2 ,.Col3 ,.Col4 ,.Col5 {
    display: inline-block;
    vertical-align: top;
    width: 49.5%;
    padding: 5px;
    box-sizing: border-box;
}
.Col1 {
	display:block;
	width:99.9%;
	line-height: 0;	
}
.Col3 {width:32.7%;}
.Col4 {width:24.4%;}
.Col5 {width: 66.5%;}

.ThanksMsg {
  color: var(--primary-color);
    font-size: 20px;
    line-height: 1.5;
    font-family: var(--sf-b);
    margin: 100px 0px;
    text-align: center;
}
.CaptchaCol{
	line-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.g-recaptcha {
    -moz-transform: scale(0.80);
    -ms-transform: scale(0.80);
    -o-transform: scale(0.80);
    -moz-transform-origin: 0;
    -ms-transform-origin: 0;
    -o-transform-origin: 0;
    -webkit-transform: scale(0.80);
    transform: scale(0.80);
    -webkit-transform-origin: 0 0;
    transform-origin: 0;
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.80,M12=0,M21=0,M22=0.80,SizingMethod='auto expand');
}


/*---- input focus css-----*/ 
input:focus,select:focus, textarea:focus{
	box-shadow: 0 0 8px var(--sc-1);
	border: 1px solid var(--sc-1);
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
/*------ placeholder text color-----*/
::-webkit-input-placeholder {
	color:var(--primary-color);
	font-size:14px; 
	line-height:24px;
	font-family: var(--sf-r);
}
:-moz-placeholder { /* Firefox 18- */
	color:var(--primary-color);
	font-size:14px;
	line-height:24px;
	font-family: var(--sf-r);
}
::-moz-placeholder {  /* Firefox 19+ */
	color:var(--primary-color);
	font-size:14px;
	line-height:24px;
	font-family: var(--sf-r);
}
:-ms-input-placeholder {
	color:var(--primary-color);
	font-size:14px;
	line-height:24px;
	font-family: var(--sf-r);
}