/* FORM STYLES */
.error {
  color: #cc0000;
}
.succes {
  color: #008000;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
select,
textarea {
  padding: 10px;
  color: #4e6271;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  display: inline-block;
  font-weight: bold;
  border: 1px solid #d4d3d3;
  background: #ffffff;
}
input[type="text"].error,
input[type="password"].error,
input[type="number"].error,
input[type="email"].error,
select.error,
textarea.error {
  border-color: #cc0000;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #0072bc;
  color: #0072bc;
}
input[type="checkbox"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 15px;
  height: 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e7ebee;
  background: #ffffff;
  position: relative;
  display: inline-block;
}
input[type="checkbox"]:checked {
  background: #0072bc !important;
  border-color: #0072bc !important;
}
input[type="checkbox"]:checked:before {
  content: "\f00c";
  position: absolute;
  font-size: 10px;
  color: #ffffff;
  width: 14px;
  height: 15px;
  top: 0;
  left: 0;
  line-height: 14px;
  text-align: center;
  font-family: FontAwesome;
}
input[type="radio"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 15px;
  height: 15px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #e7ebee;
  background: #ffffff;
}
input[type="radio"]:checked {
  background: #0072bc;
  border: 3px solid #005389 !important;
}
.btn, form .form-submit, .views-field-view-node a {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background: #0072bc;
  padding: 8px;
  line-height: 20px;
  border: 2px solid #0072bc;
  font-weight: 600;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.btn:hover, form .form-submit:hover, .views-field-view-node a:hover {
  border-color: #005389;
  background: #005389;
  text-decoration: none;
}

#content form {
	margin-top: 20px;
}

#content .form-item {
  width: 100%;
  margin: 0 0 10px 0;
}
#content .form-item:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#content .form-item label {
  line-height: 35px;
  color: #000000;
  float: left;
  display: block;
  font-weight:normal;
}

#content form fieldset legend span {
	font-weight: bold;
    font-family: 'Open Sans', Arial, Helvetica, Tahoma, sans-serif;
    color: #0072bc;
	font-size: 18px;
    line-height: 25px;
    padding: 20px 0 0 0;
	display: block;
}

#content .form-item input[type=text],
#content .form-item input[type=password],
#content .form-item input[type="number"],
#content .form-item input[type="email"],
#content .form-item select,
#content .form-textarea-wrapper {
  width: 69.03225806%;
  float: right;
  margin-left: 3.22580645%;
}
#content .form-item input[type=text].error,
#content .form-item input[type=password].error,
#content .form-item input[type="number"].error,
#content .form-item input[type="email"].error,
#content .form-item select.error,
#content .form-item textarea.error {
  border-color: #cc0000;
  background: #fef5f1;
}
#content .form-item input[type=text]:focus,
#content .form-item input[type=password]:focus,
#content .form-item input[type="number"]:focus,
#content .form-item input[type="email"]:focus,
#content .form-item select:focus,
#content .form-item textarea:focus {
  border-color: #0072bc;
}

#content .form-item select {
  height: 40px;
  background: #ffffff;
}
#content .form-item textarea {
  height: 150px;
}
#content .form-item .form_error {
  color: #cc0000;
  font-style: italic;
}
.form_row.radio .form_input input[type="radio"] {
  float: left;
  margin: 10px 5px 0 0;
}
.form_row.radio .form_input label {
  float: left;
  width: auto;
  margin-right: 15px;
}
.form_row.full .form_input {
  width: 100%;
}
.form_row .form_label label {
  width: 100%;
  font-weight: bold;
  color: #0072bc;
  font-size: 15px;
}
.form_row.units-row > div.unit-30,
.form_row.units-row > div.unit-70 {
  margin-top: 0 !important;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #4e6271;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #4e6271;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #4e6271;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #4e6271;
}
.error input[type=text],
.error input[type=password],
.error input[type="number"],
.error input[type="email"],
.error input[type="checkbox"],
.error select,
.error textarea {
  border-color: #cc0000;
  background: #fef5f1;
}
.error span {
  color: #cc0000;
  font-style: italic;
  width: 100%;
}
.error:focus {
  border: 2px solid #cc0000;
}
.correct {
  border: 1px #07c674 solid !important;
}
.correct span {
  color: #07c674;
  font-style: italic;
  width: 100%;
}
@media only screen and (max-width: 767px) {
	#content .form-item input[type=text],
	#content .form-item input[type=password],
	#content .form-item input[type="number"],
	#content .form-item input[type="email"],
	#content .form-item select,
	#content .form-item label,
	#content .form-textarea-wrapper {
		float: none;
		width: 100%;
		clear: both;
		margin: 0;
	}
}