/*
* Form styles
*/
/*
* Snackbars
*/
.rd-form {
  position: relative;
  text-align: left;
}
.rd-form button {
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s ease-out all;
  border: none;
  outline: none;
  min-width: 107px;
}
.rd-form button + button {
  margin-left: 16px;
}
* + .form-button {
  margin-top: 51px;
}
* + .rd-form {
  margin-top: 20px;
}
input:-webkit-autofill ~ label {
  color: #000000 !important;
}
input:-webkit-autofill ~ .form-validation {
  color: #000000 !important;
}
.form-wrap {
  position: relative;
}
* + .form-wrap {
  margin-top: 20px;
}
.form-wrap.has-error .form-input {
  border-color: #f5543f;
}
.form-wrap.has-focus .form-input {
  border-color: #b6c062;
}
.form-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 19px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #777777;
  background-color: #f5f5f5;
  background-image: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: 0.3s ease-in-out;
  border: 1px solid #d9d9d9;
}
.form-input:focus {
  outline: 0;
}
textarea.form-input {
  height: 135px;
  min-height: 50px;
  max-height: 230px;
  resize: vertical;
}
@media (min-width: 992px) {
  textarea.form-input {
    height: 307px;
    max-height: 350px;
  }
}
.form-label {
  margin-bottom: 0;
  color: #777777;
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  padding-left: 19px;
  padding-right: 19px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  pointer-events: none;
  text-align: left;
  z-index: 9;
  transition: .25s;
  will-change: transform;
  transform: translateY(-50%);
}
.form-label-outside {
  margin-bottom: 0;
  color: #9b9b9b;
  font-weight: 400;
  width: 100%;
  margin-bottom: 4px;
}
.form-label.focus {
  opacity: 0;
}
.form-label.auto-fill {
  color: #777777;
}
[data-x-mode='true'] .form-label {
  pointer-events: auto;
}
.form-validation {
  position: absolute;
  right: 8px;
  top: 0;
  z-index: 11;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0;
  color: #f5543f;
  transition: .3s;
}
.form-validation-left .form-validation {
  top: 100%;
  right: auto;
  left: 0;
}
#form-output-global {
  position: fixed;
  bottom: 30px;
  left: 15px;
  z-index: 2000;
  visibility: hidden;
  transform: translate3d(-500px, 0, 0);
  transition: .3s all ease;
}
#form-output-global.active {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.form-output {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2px;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.form-output.active {
  opacity: 1;
  visibility: visible;
}
.form-output.error {
  color: #f5543f;
}
.form-output.success {
  color: #98bf44;
}
.radio {
  padding-left: 28px;
}
.radio .radio-custom {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
}
.radio .radio-custom:focus {
  outline: none;
}
.radio .radio-custom-dummy {
  position: absolute;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
  pointer-events: none;
  background: #ffffff;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #b7b7b7;
}
.radio .radio-custom-dummy::after {
  position: absolute;
  opacity: 0;
  transition: .22s;
  content: '';
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background: #2c343b;
  border-radius: inherit;
}
.radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}
.radio-inline {
  padding-left: 28px;
}
.radio-inline .radio-custom {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
}
.radio-inline .radio-custom:focus {
  outline: none;
}
.radio-inline .radio-custom-dummy {
  position: absolute;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
  pointer-events: none;
  background: #ffffff;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #b7b7b7;
}
.radio-inline .radio-custom-dummy::after {
  position: absolute;
  opacity: 0;
  transition: .22s;
  content: '';
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background: #2c343b;
  border-radius: inherit;
}
.radio-inline input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}
.checkbox {
  padding-left: 28px;
}
.checkbox .checkbox-custom {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
}
.checkbox .checkbox-custom:focus {
  outline: none;
}
.checkbox .checkbox-custom-dummy {
  position: absolute;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
  pointer-events: none;
  background: #ffffff;
  left: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #b7b7b7;
}
.checkbox .checkbox-custom-dummy::after {
  opacity: 0;
  transition: .22s;
  content: '\f222';
  font-family: "Material Design Icons";
  position: absolute;
  top: -1px;
  left: -2px;
  font-size: 20px;
  line-height: 18px;
  color: #cccccc;
}
.checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}
.checkbox-inline {
  padding-left: 28px;
}
.checkbox-inline .checkbox-custom {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
}
.checkbox-inline .checkbox-custom:focus {
  outline: none;
}
.checkbox-inline .checkbox-custom-dummy {
  position: absolute;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
  pointer-events: none;
  background: #ffffff;
  left: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #b7b7b7;
}
.checkbox-inline .checkbox-custom-dummy::after {
  opacity: 0;
  transition: .22s;
  content: '\f222';
  font-family: "Material Design Icons";
  position: absolute;
  top: -1px;
  left: -2px;
  font-size: 20px;
  line-height: 18px;
  color: #cccccc;
}
.checkbox-inline input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}
.radio-custom:checked + .radio-custom-dummy:after {
  opacity: 1;
}
.checkbox-custom:checked + .checkbox-custom-dummy:after {
  opacity: 1;
}
.toggle-custom {
  padding-left: 60px;
  -webkit-appearance: none;
}
.toggle-custom:checked ~ .checkbox-custom-dummy::after {
  background: #b6c062;
  transform: translate(20px, -50%);
}
.toggle-custom ~ .checkbox-custom-dummy {
  position: relative;
  display: inline-block;
  margin-top: -1px;
  width: 44px;
  height: 20px;
  background: #f5f5f5;
  cursor: pointer;
}
.toggle-custom ~ .checkbox-custom-dummy::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  background: #b7b7b7;
  transform: translate(4px, -50%);
  opacity: 1;
  transition: .22s;
}
.rd-form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  text-align: center;
  transform: translate3d(0, -8px, 0);
  margin-bottom: -8px;
  margin-left: -4px;
  margin-right: -4px;
}
.rd-form-inline > * {
  margin-top: 8px;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: 0;
}
.rd-form-inline .form-wrap {
  flex-grow: 1;
  min-width: 185px;
}
.rd-form-inline .form-wrap-select {
  text-align: left;
}
.rd-form-inline .form-button {
  flex-shrink: 0;
  max-width: calc(100% - 10px);
  min-height: 50px;
}
.rd-form-inline .form-button .button {
  min-height: inherit;
}
.rd-form-inline.rd-form-inline-centered {
  justify-content: center;
}
.form-sm .form-input {
  padding-top: 9px;
  padding-bottom: 9px;
  min-height: 40px;
}
.form-sm .button {
  padding-top: 9px;
  padding-bottom: 9px;
  min-height: 40px;
}
.form-sm .form-validation {
  top: -16px;
}
.form-sm .form-label {
  top: 20px;
}
.form-sm * + .button {
  margin-top: 10px;
}
.form-lg .form-input {
  font-size: 16px;
  padding-top: 17px;
  padding-bottom: 17px;
  min-height: 58px;
}
.form-lg .form-label {
  font-size: 16px;
  top: 30px;
}
.form-lg .select2-container .select2-choice {
  font-size: 16px;
  padding-top: 17px;
  padding-bottom: 17px;
  min-height: 58px;
}
.form-lg .form-button {
  min-height: 60px;
}
.snackbars {
  padding: 9px 16px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  text-align: left;
  background-color: #151515;
  border-radius: 0;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  font-size: 14px;
}
.snackbars .icon-xxs {
  font-size: 18px;
}
.snackbars p span:last-child {
  padding-left: 14px;
}
.snackbars-left {
  display: inline-block;
  margin-bottom: 0;
}
.snackbars-right {
  display: inline-block;
  float: right;
  text-transform: uppercase;
}
.snackbars-right:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .form-label-outside {
    position: static;
    transform: none;
  }
  .form-label-outside.focus {
    transform: none;
  }
  .form-label-outside.auto-fill {
    transform: none;
  }
}
@media (min-width: 576px) {
  #form-output-global {
    left: 30px;
  }
  .rd-form-inline .button {
    display: block;
  }
  .snackbars {
    max-width: 540px;
    padding: 12px 15px;
    font-size: 15px;
  }
}

/*# sourceMappingURL=contact-form.css.map */