/* ------------------------------------ *\
   Forms
\* ------------------------------------ */
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */
legend {
  padding: 0; }

/**
 * Add the correct vertical alignment in Chrome and Firefox.
 */
progress {
  vertical-align: baseline; }

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

.cu-form summary {
  margin-bottom: 0.25rem; }

.cu-fieldset {
  margin-bottom: 1rem;
  padding: 1rem 1rem 0.5rem; }

.cu-input-list__item {
  padding: 0.2rem 0;
  margin-bottom: var(--cu-vr-2); }
  .cu-input-list__item--label-hidden label {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal; }
  .cu-input-list__item--radio, .cu-input-list__item--checkbox {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 0 var(--cu-ms0); }
    .cu-input-list__item--radio .cu-label, .cu-input-list__item--checkbox .cu-label {
      order: 2;
      margin-left: 0.5em;
      padding-bottom: 0; }
    .cu-input-list__item--radio .cu-input, .cu-input-list__item--checkbox .cu-input {
      margin-bottom: 0; }

.cu-label {
  display: block;
  padding-bottom: 0.4rem;
  margin-left: 1px; }

.cu-label--required::after,
.cu-legend .form-required::after {
  content: '*';
  color: #b31b1b;
  font-weight: bold;
  font-size: 80%;
  display: inline-block;
  margin-left: 0.25em;
  vertical-align: super; }

.cu-input-list__item.has-float-label:not(.js-disabled) {
  display: block;
  position: relative; }
  .cu-input-list__item.has-float-label:not(.js-disabled) label {
    position: absolute;
    left: 0.5rem;
    top: calc(0.2rem * 2.5 + 0.4rem);
    cursor: text;
    transition: all .2s;
    z-index: 10;
    color: var(--cu-color-text-disabled, #888888);
    line-height: 1; }
  .cu-input-list__item.has-float-label:not(.js-disabled).is-active label, .cu-input-list__item.has-float-label:not(.js-disabled).is-filled label {
    top: 6px;
    left: 3px;
    font-size: 75%; }

/*=============================================
=            Checkbuttons            =
=============================================*/
.cu-checkbutton__label {
  border: 2px solid #ccc;
  border-radius: 1px;
  padding-top: 0.25rem;
  display: flex;
  background: white;
  position: relative;
  min-width: 200px;
  margin: 1rem 0; }
  .cu-checkbutton__label .cu-checkbutton__indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    order: 1;
    text-align: center;
    flex-basis: 25%;
    color: #ccc; }
    .cu-checkbutton__label .cu-checkbutton__indicator::before {
      position: absolute;
      content: '';
      width: 2rem;
      height: 2rem;
      border-radius: 1rem;
      border: 1px solid #222; }
    .cu-checkbutton--disabled .cu-checkbutton__label .cu-checkbutton__indicator:hover::before {
      display: flex;
      align-items: center;
      justify-content: center;
      left: 0;
      top: 0;
      width: 100%;
      padding: 1rem;
      height: 100%;
      background: white;
      border: none;
      border-radius: 0;
      color: #222;
      content: attr(data-message); }
    .cu-checkbutton--disabled .cu-checkbutton__label .cu-checkbutton__indicator::before {
      border-color: var(--cu-color-text-disabled, #b5b5b5); }
    .cu-checkbutton--disabled .cu-checkbutton__label .cu-checkbutton__indicator::after {
      content: '\00D7';
      border: none;
      /* mouse, touch pad */ }
      @media (hover: hover) and (pointer: fine) {
        .cu-checkbutton--disabled .cu-checkbutton__label .cu-checkbutton__indicator::after {
          content: '?'; } }
  .cu-checkbutton__label .cu-checkbutton__content {
    order: 2;
    flex-basis: 75%;
    padding: var(--cu-ps-1) var(--cu-ps-1) var(--cu-ps-1) 0; }
    .cu-checkbutton__label .cu-checkbutton__content * {
      margin: 0; }
    .cu-checkbutton__label .cu-checkbutton__content .cu-button {
      margin-top: var(--cu-vr0); }

.cu-checkbutton .cu-input:checked + .cu-checkbutton__label {
  border: 2px solid #b31b1b;
  box-shadow: 0px 0px 0px 3px #b31b1b; }
  .cu-checkbutton .cu-input:checked + .cu-checkbutton__label .cu-checkbutton__indicator:after {
    content: '';
    /*Make a small rectangle so the border will create an L-shape*/
    width: 9px;
    height: 18px;
    margin-top: -3px;
    /*Use a border to create an 'L' */
    border: solid #222;
    border-width: 0 2px 2px 0;
    /*Rotate the L 45 degrees to turn it into a checkmark*/
    transform: rotate(45deg); }

.cu-checkbutton--disabled .cu-checkbutton__label {
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #F5F5F5;
  color: var(--cu-color-text-disabled, #464646); }
  .cu-checkbutton--disabled .cu-checkbutton__label .message {
    color: var(--cu-text-color); }
  .cu-checkbutton--disabled .cu-checkbutton__label::before {
    text-decoration: none; }

/*=====  End of Checkbuttons  ======*/
.cu-input {
  padding: 0.4rem 0.5rem;
  margin-bottom: 0.5rem;
  /*----------  Invalid indicator  ----------*/ }
  .cu-input--text, .cu-input--textarea, .cu-input--tel, .cu-input--email, .cu-input--password, .cu-input--select {
    width: 100%; }
  .cu-input--text, .cu-input--tel, .cu-input--email {
    border-radius: 3px;
    border: 1px solid #ccc; }
  .cu-input--submit {
    border-radius: 2px;
    border: 4px solid #b31b1b;
    background: transparent;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    width: auto;
    display: inline-block;
    text-decoration: none; }
    .cu-input--submit--alt {
      border-radius: 2px;
      border: 4px solid #b31b1b;
      background: transparent;
      padding: 0.5rem 1rem;
      margin-bottom: 1rem;
      width: auto;
      display: inline-block;
      text-decoration: none;
      --cu-text-color: white;
      background: #b31b1b; }
    .cu-input--submit--light {
      border-radius: 2px;
      border: 4px solid #b31b1b;
      background: transparent;
      padding: 0.5rem 1rem;
      margin-bottom: 1rem;
      width: auto;
      display: inline-block;
      text-decoration: none;
      color: white;
      border: 4px solid white; }
  .cu-input.required.is-touched:not(.is-filled), .cu-input.required.is-invalid:not(.is-filled) {
    color: #b31b1b;
    border: 1px solid #b31b1b;
    background: #fef7f6; }

.cu-input-message {
  --cu-font-size: var(--cu-ms-1);
  color: var(--cu-color-text-disabled, #888888); }
  .cu-input-message--invalid {
    color: #b31b1b;
    margin-left: 0.5rem; }

/*=====  End of Invalid indicator  ======*/
/*=============================================
=            Float label inputs            =
=============================================*/
.cu-input-list__item.has-float-label:not(.js-disabled) .cu-input--text,
.cu-input-list__item.has-float-label:not(.js-disabled) .cu-input--tel,
.cu-input-list__item.has-float-label:not(.js-disabled) .cu-input--email {
  padding: 1rem 0.5rem 0.2rem; }

.cu-input-list__item.has-float-label:not(.js-disabled):not(.cu-input-list__item--select).is-filled .cu-input:not(.button),
.cu-input-list__item.has-float-label:not(.js-disabled):not(.cu-input-list__item--select) .cu-input.is-focused:not(.is-filled) {
  transition: all 0.2s;
  padding: 1rem 0.5rem 0.2rem; }

.cu-input-list__item.has-float-label:not(.js-disabled) .cu-input::placeholder,
.cu-input-list__item.has-float-label:not(.js-disabled) .cu-input--select::placeholder,
.cu-input-list__item.has-float-label:not(.js-disabled) textarea::placeholder {
  opacity: 1;
  transition: all .2s; }

.cu-input-list__item.has-float-label:not(.js-disabled) .cu-input:placeholder-shown:not(:focus)::placeholder,
.cu-input-list__item.has-float-label:not(.js-disabled) .cu-input--select:placeholder-shown:not(:focus)::placeholder,
.cu-input-list__item.has-float-label:not(.js-disabled) textarea:placeholder-shown:not(:focus)::placeholder {
  opacity: 0; }

/*=====  End of Float label inputs  ======*/
/*=============================================
=            Checkbuttons            =
=============================================*/
.cu-checkbutton .cu-input {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal; }

/*=====  End of Checkbuttons  ======*/
.cu-form *,
.cu-form *:before,
.cu-form *:after {
  box-sizing: border-box; }
/*# sourceMappingURL=form.css.map */
