




/*-------- 1.3 Forms             --------*/
input,
select,
textarea {
  font-family: 'Roboto', sans-serif;
}
.input-custom {
  appearance: none;
  margin-bottom: 5px;
  padding: 14px 15px 14px;
  font-size: 15px;
  line-height: 24px;
  height: 54px;
  background: #fff;
  border: 1px solid #d7dbdf;
  border-radius: 3px;
  color: #2b2b2b;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.input-custom:hover,
.input-custom:focus,
.input-custom.focus {
  outline: none;
  border-color: #4ba0e8;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.input-custom.input-full {
  width: 100%;
}
.input-custom.input-custom--sm {
  padding: 9px 15px;
  height: 42px;
  line-height: 20px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background: #fff;
}
.textarea-custom {
  appearance: none;
  margin-bottom: 5px;
  padding: 14px 15px 14px;
  font-size: 15px;
  line-height: 24px;
  height: 54px;
  background: #fff;
  border: 1px solid #d7dbdf;
  border-radius: 3px;
  color: #2b2b2b;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  min-height: 193px;
  height: auto;
}
.textarea-custom:hover,
.textarea-custom:focus,
.textarea-custom.focus {
  outline: none;
  border-color: #4ba0e8;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.textarea-custom.input-full {
  width: 100%;
}
.input-wrapper {
  position: relative;
  margin-bottom: 15px;
}
.placeholder {
  font-size: 15px;
  line-height: 20px;
  color: #a7b3bd;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 15px;
  line-height: 20px;
  color: #a7b3bd;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-size: 15px;
  line-height: 20px;
  color: #a7b3bd;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-size: 15px;
  line-height: 20px;
  color: #a7b3bd;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  font-size: 15px;
  line-height: 20px;
  color: #a7b3bd;
}
.required {
  color: red;
}
input.input-custom,
textarea.textarea-custom,
.select-wrapper select.input-custom {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-wrapper.select-wrapper--full {
  width: 100%;
}
.select-wrapper {
  position: relative;
}
.select-wrapper:before {
  content: '\25BE';
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: 52px;
  height: 52px;
  font-size: 14px;
  line-height: 54px;
  pointer-events: none;
  color: #6fbf52;
  text-align: center;
}
.select-wrapper select {
  padding-right: 40px;
  width: 100%;
  background-color: #fff;
  color: #2b2b2b;
}
.select-wrapper--sm:before {
  width: 40px;
  height: 40px;
  line-height: 42px;
}
.select-wrapper.select-time {
  width: 110px;
  display: inline-block;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
/*for IE10*/
select::-ms-expand {
  display: none;
}
.contact-form {
  margin-bottom: 15px;
  margin-top: 0;
}
label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #000;
}
form label.error {
  display: block;
  color: #ff0000;
  font-size: 13px !important;
  opacity: 1 !important;
  margin-top: -18px;
}
form.contact-form label.error {
  margin-top: -5px;
}
form.contact-form textarea + label.error {
  margin-top: -12px;
}
.successform,
.errorform {
  display: none;
  min-height: 50px;
}
.successform,
.errorform {
  margin-top: 15px;
}
.successform p,
.errorform p {
  margin-bottom: 0 !important;
}
.successform {
  color: #4ba0e8;
}
.errorform {
  color: #c0392b;
}
.form-table input::-webkit-input-placeholder {
  color: #000;
}
.form-table input::-moz-placeholder {
  color: #000;
}
.form-table input:-ms-input-placeholder {
  color: #000;
}
.form-table input:-moz-placeholder {
  color: #000;
}






/*-------- 1.4 Buttons           --------*/
button:focus,
.btn:focus,
button:active:focus,
.btn:active:focus,
button.active:focus,
.btn.active:focus,
button.focus,
.btn.focus,
button:active.focus,
.btn:active.focus,
button.active.focus,
.btn.active.focus {
  outline: 0;
  outline: none;
}
button:hover,
.btn:hover,
button:focus,
.btn:focus,
button.focus,
.btn.focus {
  outline: 0;
  outline: none;
}
button:active,
.btn:active,
button.active,
.btn.active {
  outline: 0;
  outline: none;
}
.btn {
  padding: 11px 30px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  height: auto;
  background-color: #6fbf52;
  color: #ffffff;
  border-radius: 23.5px;
  border: 0;
  vertical-align: top;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}