.area_form {
	position: relative;
	margin-top: 40px;
    font-family: 'Open Sans', sans-serif;
	color:#474747;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.area_form  strong{
    font-weight: 700;
}

.area_form .field {
	margin-bottom: 18px;
}

.area_form .row_form {
	margin-bottom: 25px;
}

.area_form .row_form:last-of-type {
	margin-bottom: 0;
}

input, select {
    display: block;
	height: 40px;
	width:100%;
	font-size: 16px;
	color:#474747;
    background-color: #f7f7f7;
    border: none;
	border-radius: 3px;
    outline: none;
	padding:0 10px;
    -webkit-appearance: none;
}

textarea {
	display:block;
	width:100%;
	height: 200px;
	font-size: 16px;
	color:#474747;
    background-color: #f7f7f7;
    border: none;
	border-radius: 3px;
	padding: 10px;
	resize: none;
}

input[type=text]:focus {
	 background-color:#e7e7e7;
}

textarea:focus {
	 background-color:#e7e7e7;
}

input[type=submit] {
	font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    white-space: normal;
    text-align: center;
    display: inline-block;
	max-width: 200px;
    margin-bottom: 0;
    vertical-align: middle;
    padding: 10px 15px;
    min-height: 40px;
    border-radius: 2px;
    color: #fff;
    background-color: #333;
    border: 1px solid #333;
    box-shadow: inset 0 1px 0 0 hsla(0,0%,100%,.15);
    cursor: pointer;
    text-decoration: none !important;
	text-transform: none;
}

.label_row {
  	display: block;
  	position: relative;
	padding-left: 35px;
  	margin-bottom: 12px;
  	cursor: pointer;
  	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}

.label_row.privacy {
	font-size:12px;
}

.label_row a {
	font-weight: 700;
	text-decoration: underline;
}

.label_row input {
  	position: absolute;
  	opacity: 0;
  	cursor: pointer;
  	height: 0;
  	width: 0;
}

.checkmark {
  	position: absolute;
  	top: 0;
  	left: 0;
	height: 22px;
  	width: 22px;
	background-color: #eee;
	border-radius: 2px;
}

.label_row:hover input ~ .checkmark {
  	background-color: #e7e7e7;
}

.label_row input:checked ~ .checkmark {
  background-color: #474747;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.label_row input:checked ~ .checkmark:after {
  display: block;
}

.label_row .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radiobtn {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border-radius: 50%;
}

.label_row:hover input ~ .radiobtn {
  background-color: #e7e7e7;
}

.label_row input:checked ~ .radiobtn {
  background-color: #474747;
}

.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

.label_row input:checked ~ .radiobtn:after {
  display: block;
}

.label_row .radiobtn:after {
 	top: 7px;
	left: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/*ERROR*/

label.error {
	color: #fff;
    display: table;
    background-color: red;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
	font-size:11px;
    padding: 5px 15px;
	border-radius: 3px;
}

/*PLACEHOLDER*/

::-webkit-input-placeholder { 
	color:#474747;
	opacity:1;
}

::-moz-placeholder { 
	color:#474747;
	opacity:1;
}

:-ms-input-placeholder { 
	color:#474747;
	opacity:1;
}

:-moz-placeholder { 
	color:#474747;
	opacity:1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
 opacity: 0;
}

 input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
 opacity: 0;
}

 input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
 opacity: 0;
}

 input:focus:-ms-placeholder, textarea:focus:-ms-placeholder {
 opacity: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: transparent !important;
    background-image: none !important;
    -webkit-text-fill-color: #333 !important;
	-webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}


