form.codex-style {
  /*
  .ginput_container_textarea {
    position: relative;

    .ginput_counter {
      position: absolute;
      bottom: 13px;
      left: 20px;
      font-size: 12px;
      color: #b1b1b1;

      &.warningTextareaInfo {
        color: #f16623;
      }
    }

    textarea {
      margin: 10px 0 30px 0;
      background-color: white;
      color: #878787;
      font-family: "font-02", sans-serif;
      box-shadow: 0 5px 10px 5px rgb(0 0 0 / 5%);
      border-radius: 16px;
      min-width: 100%;
      max-width: 748px;
      width: 100%;
      min-height: 130px;
      max-height: 130px;
      height: 130px;
    }
  }

  .ginput_container_select {
    position: relative;

    select {
      margin: 10px 0 30px 0;
      background-color: white;
      color: #878787;
      font-family: "font-02", sans-serif;
      box-shadow: 0 5px 10px 5px rgb(0 0 0 / 5%);
      border-radius: 45px;
      padding: 0 20px;
      border-right: 16px solid transparent;
      height: 4.25rem;
    }
  }

  .ginput_container_text {
    position: relative;

    input[type=text] {
      margin: 10px 0 30px 0;
      background-color: white;
      color: #878787;
      font-family: "font-02", sans-serif;
      box-shadow: 0 5px 10px 5px rgb(0 0 0 / 5%);
      border-radius: 45px;
      height: 4.25rem;
    }

    .ginput_counter {
      position: absolute;
      top: 26px;
      right: 20px;
      font-size: 12px;
      color: #b1b1b1;
    }
  }

  .ginput_complex {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;

    .ginput_container_date {
      flex-grow: 1;

      input[type=text] {
        margin: 0;
        background-color: white;
        color: #878787;
        font-family: "font-02", sans-serif;
        box-shadow: 0 5px 10px 5px rgb(0 0 0 / 5%);
        border-radius: 45px;
        height: 4.25rem;
      }

      .screen-reader-text {
        font-size: 14px;
        text-align: center;
        margin: 5px 0 0 0;
        color: #939393;
      }
    }

    .gfield_date_day {
      input[type=text] {
        border-radius: 45px 0 0 45px;
      }
    }

    .gfield_date_month {
      input[type=text] {
        border-radius: 0;
      }
    }

    .gfield_date_year {
      input[type=text] {
        border-radius: 0 45px 45px 0;
      }
    }
  }

  .gform_footer {
    button {
      padding: 0 1.625rem !important;
      height: 60px !important;
      font-size: 1.125rem !important;
      background-color: #F16623;
      border-width: 3px;
      border-style: solid;
      border-color: #F16623;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      line-height: 1.1em;
      transition: all 200ms ease-in-out;
      margin: 1.5em auto;
      text-transform: none !important;

      span {
        font-family: "font-01", serif;
        font-weight: bold;
        color: #fff;
        text-align: center;
      }

      svg {
        display: none;
      }
    }
  }
  */
}
form.codex-style .gform_fields p {
  color: #5D5D60;
}
form.codex-style fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
form.codex-style .gfield_radio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px 0 30px 0;
  background-color: white;
  color: #878787;
  font-family: "font-02", sans-serif;
}
@media (min-width: 768px) {
  form.codex-style .gfield_radio {
    flex-direction: row;
    height: 4.25rem;
    align-items: center;
  }
}
form.codex-style .gfield_radio .gchoice {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  padding: 15px;
}
@media (max-width: 767px) {
  form.codex-style .gfield_radio .gchoice + .gchoice {
    padding-top: 0;
  }
}
form.codex-style .gfield_radio .gchoice input[type=radio] {
  display: none;
}
form.codex-style .gfield_radio .gchoice input[type=radio] + label {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 2rem 0 0 2rem;
  background-color: #f6fcfd;
  margin-bottom: 0;
  color: #363636;
}
form.codex-style .gfield_radio .gchoice input[type=radio] + label::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #ededed;
  color: white;
  border-radius: 2rem;
  margin-right: 1rem;
}
form.codex-style .gfield_radio .gchoice input[type=radio] + label::before svg {
  display: none;
  font-size: 1.4em;
}
form.codex-style .gfield_radio .gchoice input[type=radio]:checked + label {
  background-color: #fff5e1;
  color: #b57a00;
}
form.codex-style .gfield_radio .gchoice input[type=radio]:checked + label::before {
  background-color: #f6b329 !important;
  background-image: url("../img/radio-check.png");
  background-position: center center;
  background-repeat: no-repeat;
}
form.codex-style .gfield_radio .gchoice input[type=radio]:checked + label::before svg {
  display: block;
}
form.codex-style .gfield_visibility_hidden {
  display: none;
}

/*# sourceMappingURL=forms.css.map */
