.freeform-form {
  font-family: "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}
.freeform-form .required::after {
  content: "*";
  color: #d00;
  margin-left: 5px;
}
.freeform-form button[type="submit"].freeform-processing {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
}
.freeform-form button[type="submit"].freeform-processing:before {
  content: "";
  display: block;
  flex: 1 0 11px;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: transparent transparent #fff #fff;
  border-radius: 50%;
  animation: freeform-processing 0.5s linear infinite;
}
.freeform-form [data-field-type="table"] [type="radio"] + label {
  color: rgb(71, 85, 105);
}
@keyframes freeform-processing {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.freeform-form .input-group-one-line > div {
  float: left;
  margin-right: 15px;
}

.mb-4:has([data-hidden]) {
  margin-bottom: 0;
}

[data-freeform-turnstile-container] {
  margin-bottom: 1rem;
}
