/* Page set up */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  color: #49134c;
  font-family: 'Helvetica Neue LT Std', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  background-color: #f3f3f3;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* Utility classes */
.sr-only {
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
/* Layouts */
.l-form {
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.1);
}
.l-form__inner {
  overflow: hidden;
}
.l-form__header {
  display: block;
  padding: 40px 20px 30px;
}
@media screen and (min-width: 768px) {
  .l-form__header {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.l-form__content {
  display: block;
  padding: 0 20px 40px;
}
@media screen and (min-width: 768px) {
  .l-form__content {
    padding-right: 40px;
    padding-left: 40px;
  }
}
/* Global components */
.c-btn {
  display: inline-block;
  min-width: 185px;
  padding: 13px 20px 8px;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2222;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  background-color: #49134c;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
}
.c-btn:hover,
.c-btn:focus {
  background-color: #ec008c;
}
/* Components */
@media screen and (min-width: 768px) {
  .c-form-header {
    display: grid;
    display: -ms-grid;
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-columns: 1fr 1fr;
    align-items: start;
    justify-items: start;
  }
  .c-form-header.c-form-header--centre {
    display: block;
    text-align: center;
  }
}
.c-form-header__logo {
  display: block;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .c-form-header__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row-align: start;
  }
  .c-form-header--centre .c-form-header__logo {
    max-width: 390px;
    margin: 0 auto 20px;
  }
}
.c-form-header__aside {
  display: block;
  max-width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-form-header__aside {
    margin-top: 0;
    grid-column: 2;
    -ms-grid-column: 2;
    grid-row: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
  }
  .c-form-header--centre .c-form-header__aside {
    margin-top: 40px;
  }
}
.c-form-header__heading_error {
    display: inline-block;
    margin: 20px 0 0;
    padding: 12px 20px 8px 0;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2222;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 5px 5px 0;
    background-color: red;
}
.c-form-header__heading_fail {
    display: inline-block;
    margin: 20px 0 0;
    padding: 12px 20px 8px 0;
    position: relative;
    color: red;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2222;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 5px 5px 0;
    background-color: #fff;
    word-break: break-word;
}
.c-form-header__heading_success {
    display: inline-block;
    margin: 20px 0 0;
    padding: 12px 20px 8px 0;
    position: relative;
    color: greenyellow;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2222;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 5px 5px 0;
    background-color: #fff;
}
.c-form-header__heading {
  display: inline-block;
  margin: 20px 0 0;
  padding: 12px 20px 8px 0;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2222;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0 5px 5px 0;
  background-color: #49134c;
}
.c-form-header__heading::before {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 100%;
  background-color: #49134c;
}
@media screen and (min-width: 768px) {
  .c-form-header__heading {
    margin-top: 0;
    grid-row: 2;
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-row-align: start;
    -ms-grid-column-align: start;
  }
  .c-form-header__heading::before {
    width: 40px;
  }
  .c-form-header--centre .c-form-header__heading {
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 5px;
  }
  .c-form-header--centre .c-form-header__heading::before {
    content: none;
  }
}
.c-form-footer__graphic {
  display: block;
  width: 100%;
  filter: drop-shadow(0 -2px 20px rgba(0, 0, 0, 0.2));
}
.c-form-footer__inner {
  padding: 30px 20px 30px;
  position: relative;
  color: #fff;
  border-radius: 0 0 10px 10px;
  background-color: #ec008c;
}
@media screen and (min-width: 768px) {
  .c-form-footer__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
/* Shroud to cover the subpixel gap between graphic and footer */
.c-form-footer__inner::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #ec008c;
}
@media screen and (min-width: 768px) {
  .c-form-footer__content {
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .c-form-footer__col + .c-form-footer__col {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-form-footer__col {
    flex: 0 1 auto;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.c-form-footer__text {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2222;
  white-space: nowrap;
}
.c-cta-text {
  margin: 0 0 20px;
  color: #8dc63f;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-align: center;
}
.c-cta-text span {
  display: inline-block;
}
.c-cta-text em {
  margin-left: 0.1em;
  color: #49134c;
  font-family: 'SuperFly One', cursive;
  font-size: 1.8em;
  line-height: 1.15;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .c-cta-text em {
    font-size: 2.3em;
  }
}
@media screen and (min-width: 768px) {
  .c-form__row {
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
  }
}
.c-form__col--narrow {
  max-width: 50%;
}
@media screen and (min-width: 768px) {
  .c-form__col {
    flex: 1 1 50%;
    padding-right: 10px;
    padding-left: 10px;
  }
  .c-form__col--half {
    flex-grow: 0;
  }
  .c-form__col--narrow {
    flex-grow: 0;
    flex-basis: 33.3333%;
  }
  .c-form__col--align-right {
    text-align: right;
  }
}
.c-form__mandatory-text {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
}
.c-form__submit {
  margin-top: 10px;
}
.c-form__mandatory-text::before {
  content: '*';
  color: #ec008c;
  font-weight: 700;
}
.c-form-control {
  margin-bottom: 20px;
}
.c-form-control__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2222;
}
.c-form-control__option_label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2222;
}
.c-form-control--required .c-form-control__label::after {
  content: '*';
  color: #ec008c;
}
.c-form-control__field {
  display: block;
  width: 100%;
}
.c-form-control__error-message {
  margin: 5px 0 0;
  color: #ed1c24;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
  letter-spacing: 0.9px;
  font-style: italic;
}
.c-text-field {
  padding: 9px 14px 8px;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 300;
  letter-spacing: 0.9px;
  border: 1.5px solid #49134c;
  border-radius: 5px;
  appearance: none;
  transition: border-color 0.2s ease-out;
}

.c-dropdown-field {
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: 0.9px;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    box-sizing: border-box;
    align-items: center;
    white-space: pre;
    -webkit-rtl-ordering: logical;
    background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
    cursor: default;
    margin: 0em;
    /*font: 400 13.3333px Arial;*/
    font-size: 16px;
    font-weight: 300;
    border: 1.5px solid #49134c;
    border-radius: 5px;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
    transition: border-color 0.2s ease-out;
}

.c-text-field:focus {
    border-color: #8dc63f;
    outline: none;
}
.c-icon-columns {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .c-icon-columns {
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
  }
}
.c-icon-columns__col {
  max-width: 240px;
  margin: 0 auto;
  color: #ec008c;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-icon-columns__col + .c-icon-columns__col {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-icon-columns__col {
    flex: 0 1 33.3333%;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.c-icon-columns__icon {
  display: block;
  max-width: 60px;
  margin: 0 auto 10px;
}

/*# sourceMappingURL=index.aa255558.css.map */
