.multi-step-form input[type="text"],
.multi-step-form input[type="email"],
.multi-step-form input[type="url"],
.multi-step-form input[type="password"],
.multi-step-form input[type="search"],
.multi-step-form input[type="number"],
.multi-step-form input[type="tel"],
.multi-step-form input[type="range"],
.multi-step-form input[type="date"],
.multi-step-form input[type="month"],
.multi-step-form input[type="week"],
.multi-step-form input[type="time"],
.multi-step-form input[type="datetime"],
.multi-step-form input[type="datetime-local"],
.multi-step-form input[type="color"],
.multi-step-form textarea,
.multi-step-form select {
  color: #666;
  font-size: 16px;
  height: 55px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 20px;
}

.multi-step-form textarea {
  min-height: 180px;
  height: auto;
}

.multi-step-form .is-hidden-field {
  display: none;
}

.multi-step-form input[type="checkbox"]{
    vertical-align: middle;
}
.multi-step-form .ff-booleancheckbox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: bold;
}
.multi-step-form .booleancheckbox-false {
  display: none;
}
.multi-step-form .booleancheckbox-true {
  cursor: pointer;
}
.multi-step-form .booleancheckbox-true span {
  margin: 0 4px;
}

.multi-step-form .ff-legalconsent{
  font-size: 14px;
  border-left: 1px solid #e5e5e5;
  padding: 0 12px 0;
}

.multi-step-form input[type="submit"],
.multi-step-form button {
  background-color: #f1f1f1;
  border: 0;
  border-radius: 6px;
  color: #999;
  letter-spacing: 0.16em;
  padding: 20px 40px;
  margin: 20px 20px 20px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.multi-step-form input[type="submit"]:hover,
.multi-step-form button:hover {
  background-color: #e0e0e0;
  color: #000;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transform: translateY(-2px);
}

.multi-step-form .btn-primary {
  background-color: #afcc6f;
  color: #fcfcfc;
}
.multi-step-form .btn-primary:hover {
  background-color: #97b45e;
  color: #fff;
}

.multi-step-form button:disabled,
.multi-step-form button.is-loading {
  cursor: not-allowed;
  opacity: 0.75;
  box-shadow: none;
  transform: none;
}

.multi-step-form button.is-loading {
  color: inherit;
}

.ff-finished-message{
  margin: 40px 0;
  border: 1px solid #9fe69f;
  padding: 30px 15px;
  border-radius: 10px;
  background-color: #e9ffe9;
  text-align: center;
}

.ehf-spinner {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: ehf-spin 0.75s linear infinite;
  vertical-align: middle;
}

.ehf-spinner__sr-only {
  border: 0 !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

@keyframes ehf-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.with-error .required-text {
  display: block !important;
  color: red;
  margin-top: -15px;
  margin-bottom: 15px;
}

.with-error input,
.with-error select,
.with-error textarea {
  box-shadow: 0px 0px 1px 1px rgba(255, 0, 0, 0.55);
}

.ehf-error-message {
  background: #fceaea;
  border: 1px solid #f3b4b4;
  color: #8a1f1f;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.ehf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
