/**
Calculate rem
*/
.c-form {
  padding-top: 0;
}
.c-form-form {
  padding: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 36px 0 rgba(99, 35, 120, 0.25);
          box-shadow: 0 4px 36px 0 rgba(99, 35, 120, 0.25);
}
@media (min-width: 992px) {
  .c-form-form {
    padding: 40px 72px;
  }
}
.c-form label {
  font-weight: 400;
}
.c-form .form-radio fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}
.c-form .form-radio fieldset legend {
  font-size: 0.875rem;
  line-height: 200%;
  font-weight: 300;
  word-break: break-word;
  font-family: "Roboto", sans-serif;
  color: #020202;
}
@media (min-width: 992px) {
  .c-form .form-radio fieldset legend {
    font-size: 1rem;
  }
}
.c-form .form-radio fieldset legend {
  font-weight: 500;
  margin-bottom: 12px;
}
.c-form .form-radio .custom-radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-right: 1rem;
}
.c-form .form-radio .custom-radio input[type=radio] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.c-form .form-radio .custom-radio .radio-ui {
  width: 24px;
  height: 24px;
  border: 2px solid #020202;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 0.5em;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-form .form-radio .custom-radio .radio-ui::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: #020202;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-form .form-radio .custom-radio input[type=radio]:checked + .radio-ui::after {
  opacity: 1;
}
.c-form .form-radio .custom-radio input[type=radio]:focus + .radio-ui {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.c-form button {
  margin-top: 0;
}
@media (min-width: 992px) {
  .c-form button {
    margin-top: 14px;
  }
}
.c-form .form-header-text {
  font-size: 1.125rem;
  line-height: 178%;
  font-family: "Roboto Condensed", sans-serif;
  color: #849E1C;
  font-weight: 700;
  word-break: break-word;
}
@media (min-width: 992px) {
  .c-form .form-header-text {
    font-size: 1.875rem;
    line-height: 160%;
  }
}
.c-form .form-header-text {
  color: #849E1C;
}