.survey-field-wrapper {
  display: flex;
  flex-direction: column;
}

  .survey-field-wrapper .survey-validation-correct-message {
    color: #089f27;
    color: var(--color-success);
    font-size: 0.875rem;
    font-size: var(--font-size-small);
    margin-top: 1rem;
  }

  .survey-field-wrapper .label-text {
    flex-wrap: wrap;
  }

  .survey-field-wrapper .label-text span {
      flex-basis: 100%;
    }

.idle-alert-dialog h2 {
    color: transparent;
  }
  .idle-alert-dialog div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .idle-alert-dialog div p {
      font-size: 1.125rem;
      font-size: var(--font-size-large);
      margin: 0;
    }
  .idle-alert-dialog div div {
      border: 2px solid #3b93cd;
      border: 2px solid var(--color-brand);
      border-radius: 50%;
      box-shadow: inset 0 0 10px #3b93cd;
      box-shadow: inset 0 0 10px var(--color-brand);
      height: 5rem;
      margin-top: 1.5rem;
      margin-top: var(--gap);
      width: 5rem;
    }
  .idle-alert-dialog div div span {
        font-size: 2.25rem;
        font-size: var(--font-size-huge);
      }
  .idle-alert-dialog footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    margin-top: var(--gap);
  }

.access-denied-con {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  max-width: 100%;
}

.main-header {
  --header-background-color: var(--color-header-dark, #20273a);
  --header-color: #fff;

  align-items: center;
  background-color: var(--header-background-color);
  color: var(--header-color);
  display: flex;
  min-height: 5rem;
  min-height: var(--header-height);
  padding: 0 max(calc(50vw - calc(100vw - 1.5rem * 2) / 2), 1.5rem);
  padding: 0 var(--page-content-horizontal-padding);
  position: sticky;
  top: 0;
  z-index: 20;
}

  @media (max-width: 62.999rem) {.main-header {
    margin: 0
}
        .main-header .hamburger-menu.open .hamburger-menu-content {
          display: block;
          top: 5rem;
          top: var(--header-height);
        }
  }

  .main-header.clean-layout {
    background-color: transparent;
    color: var(--header-background-color);
    position: fixed;
  }

  @media (min-width: 63rem) {

  .main-header.clean-layout {
      background-color: transparent
  }
    }

  @media (max-width: 62.999rem) {

  .main-header.clean-layout {
      left: 0;
      right: 0
  }
    }

  .main-header .main-logo {
    color: inherit;
    flex-shrink: 0;
    max-height: 5rem;
    max-height: var(--header-height);
    overflow: hidden;
    position: relative;
  }

  .main-header .main-logo > img {
      max-height: 100%;
      max-width: 100%;
      -o-object-fit: contain;
         object-fit: contain;
    }

  .main-header > .account-icon {
    display: block;
    height: 1.25rem;
    margin-left: auto;
    margin-right: 0.75rem;
    margin-right: var(--gap-small);
    width: 1.25rem;
    z-index: 3;
  }

  .main-header > .mobile-account-icon {
    left: auto;
    position: relative;
    top: auto;
  }

  .main-header > .mobile-account-icon::before {
      left: calc(-1 * 1.5rem + 0.25rem);
      left: calc(-1 * var(--gap) + 0.25rem);
      top: calc(-1 * 0.75rem);
      top: calc(-1 * var(--gap-small));
    }

  .main-header .hamburger-menu-content {
    align-items: stretch;
    background-color: var(--header-background-color);
    flex-direction: column;
    font-size: 1.5rem;
    font-size: var(--font-size-x-large);
    justify-content: center;
    line-height: 1.5rem;
    line-height: var(--font-size-x-large);
    padding: 1.5rem;
    padding: var(--gap);
  }

  .main-header .hamburger-menu-content li {
      line-height: 3rem;
      line-height: var(--font-size-x-huge);
    }

  .main-header .hamburger-menu-content li > a.active {
        color: #3b93cd;
        color: var(--color-brand);
      }

  .main-header .hamburger-menu-content li > button {
        line-height: 3rem;
        line-height: var(--font-size-x-huge);
      }

  .main-header .hamburger-menu-content nav.main-nav {
      width: 100%;
    }

  .main-header .hamburger-menu-content nav.profile {
      width: 100%;
    }

  .main-header .hamburger-menu-content hr {
      background-color: #969ba7;
      background-color: var(--color-text-ternary);
      display: block;
      height: 1px;
      margin: 1.5rem 0.375rem;
      margin: var(--gap) var(--gap-tiny);
      width: auto;
    }

  .main-header .hamburger-menu-content .tablet-user-name {
      color: #50586d;
      color: var(--color-text);
      font-size: 1.125rem;
      font-size: var(--font-size-large);
      font-weight: 700;
      font-weight: var(--bold);
      line-height: 3rem;
      line-height: var(--font-size-x-huge);
      max-width: 17rem;
      padding: 0 0.5rem;
      width: 100%;
    }

  .main-header .hamburger-menu-content .unregistered-buttons > .link,
    .main-header .hamburger-menu-content .menu-link,
    .main-header .hamburger-menu-content .menu-button {
      background-color: transparent;
      color: currentColor;
      min-height: 2rem;
      padding: 0 0.5rem;
    }

  .main-header .main-nav.desktop {
    --index: 0;
  }

  .main-header .main-nav.desktop li {
      animation: bounceIn 0.2s ease-in-out;
      animation-delay: calc(0.075s * var(--index));
      animation-fill-mode: backwards;
      transition: transform ease 0.3s;
    }

  .main-header nav.signed-out.desktop {
    flex-grow: 0;
  }

  .main-header nav.signed-out.desktop a,
    .main-header nav.signed-out.desktop .button {
      color: inherit;
      font-size: inherit;
      font-weight: normal;
    }

  .main-header nav.signed-out.desktop a.flat, .main-header nav.signed-out.desktop .button.flat {
        border: solid 1px #f4f4f5;
        border: solid 1px var(--color-border-light);
        margin-right: 0.75rem;
        margin-right: var(--gap-small);
      }

  .main-header nav.signed-out.desktop a.flat > a, .main-header nav.signed-out.desktop .button.flat > a {
          padding: 0 1rem;
          text-align: center;
          width: 100%;
        }

  .main-header nav.signed-out.desktop a.flat::after, .main-header nav.signed-out.desktop .button.flat::after {
          content: none;
        }

  .main-header nav.signed-out.desktop .button.primary > a {
      padding-left: 1rem;
      padding-right: 1rem;
    }

  .main-header nav.signed-out.desktop .menu-link,
    .main-header nav.signed-out.desktop .menu-button {
      color: currentColor;
      min-height: 2rem;
      padding: 0 0.5rem;
      white-space: nowrap;
    }

  .main-header nav.signed-out.mobile a,
    .main-header nav.signed-out.mobile .button {
      color: inherit;
      font-size: inherit;
      font-weight: normal;
    }

  .main-header nav.menu.profile.desktop {
    flex-grow: 0;
    flex-shrink: 1;
  }

  .main-header nav.menu.profile.desktop .profile-menu {
      display: flex;
    }

  .main-header nav.menu.profile.desktop .profile-toggle {
      align-items: center;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
    }

  .main-header nav.menu.profile.desktop .profile-toggle .label {
        align-items: center;
        color: currentColor;
        display: flex;
        flex-direction: row;
        max-width: 12.5rem;
        width: 100%;
      }

  .main-header nav.menu.profile.desktop .profile-toggle .label span {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          width: 100%;
        }

  .main-header nav.menu.profile.desktop .profile-toggle .account-icon {
        fill: currentColor;
        height: 1.5rem;
        margin-right: 0.375rem;
        margin-right: var(--gap-tiny);
        width: 1.5rem;
      }

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.975);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounceOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: scale(0.75);
  }
}

.main-logo.link {
  z-index: 3;
}

  .main-logo.link > img {
    display: block;
    height: 2.0625rem;
    height: var(--logo-height);
    /* Webkit (non-standard naming) */
    image-rendering: -webkit-optimize-contrast;
    width: 8rem;
    width: var(--logo-width);
  }

  .main-logo.link > svg {
    display: block;
    height: 2.0625rem;
    height: var(--logo-height);
    width: 8rem;
    width: var(--logo-width);
  }

  .main-logo.link > svg path:first-of-type {
      fill: #3b93cd;
      fill: var(--color-brand);
    }

  .main-logo.link > svg path:last-child {
      fill: currentColor;
    }

.notification-indicator {
  left: 2rem;
  position: absolute;
  top: 0.625rem;
}

  @media (min-width: 63rem) and (max-width: 83.999rem) {.notification-indicator {
    left: 1.5rem
}
  }

  .notification-indicator::before {
    background-color: #dd1831;
    background-color: var(--color-error);
    border-radius: 50%;
    content: ' ';
    height: 0.5rem;
    position: absolute;
    width: 0.5rem;
    z-index: 3;
  }

  .notification-indicator.menu-notification {
    --min-nav-line-height: 2rem;

    left: calc(var(--min-nav-line-height) / 16);
    position: relative;
    top: calc(var(--min-nav-line-height) / -4);
  }

  @media (max-width: 62.999rem) {

  .notification-indicator.menu-notification {
      top: -0.625rem
  }
    }

nav.main-nav {
  overflow-x: auto;
}

  nav.main-nav .menu-link,
  nav.main-nav .menu-button {
    color: currentColor;
    min-height: 2rem;
    padding: 0 0.5rem;
    white-space: nowrap;
  }

  @media (min-width: 63rem) {nav.main-nav {
    overflow-x: auto
}
  }

.main-footer {
  align-items: center;
  background-color: #20273a;
  background-color: var(--color-page-footer-background);
  color: #fff;
  color: var(--color-page-footer-text);
  display: flex;
  flex-direction: column;
  padding: 1.5rem max(calc(50vw - calc(100vw - 1.5rem * 2) / 2), 1.5rem);
  padding: var(--gap) var(--page-content-horizontal-padding);
}

  .main-footer header {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .main-footer header a.main-logo {
      color: inherit;
      margin-right: auto;
    }

  .main-footer header div * {
        font-size: 0.875rem;
        font-size: var(--font-size-small);
      }

  .main-footer header .powered-by {
      height: 40px;
      width: 120px;
    }

  @media (max-width: 47.999rem) {

  .main-footer header {
      flex-direction: column
  }

      .main-footer header a.main-logo {
        margin: 0;
      }

      .main-footer header .powered-by {
        margin: 0.75rem 0;
        margin: var(--gap-small) 0;
      }
    }

  .main-footer .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: calc(100vw - 1.5rem * 2);
    max-width: var(--width-container);
    position: relative;
    width: 100%;
  }

  @media (max-width: 83.999rem) {

  .main-footer .links {
      flex-direction: column;
      flex-grow: 0;
      margin-left: -2rem
  }
    }

  .main-footer .links > .menu {
      align-items: stretch;
      display: flex;
      flex-direction: row;
      flex-grow: 5;
      justify-content: space-between;
    }

  .main-footer .links > .menu > ul > li {
          flex-grow: 1;
          margin: 0 0.5rem 0 0;
        }

  @media (max-width: 62.999rem) {

  .main-footer .links > .menu > ul > li {
            margin: 0
        }
          }

  .main-footer .links > .menu a {
        line-height: normal;
        text-decoration: none;
      }

  .main-footer .links > .menu .menu-title {
        font-size: 1.125rem;
        font-size: var(--font-size-large);
      }

  .main-footer .links > .menu ul ul a {
        display: inline-block;
        font-size: 1.125rem;
        font-size: var(--font-size-large);
        padding: 0.5rem 1rem;
      }

  .main-footer .links > .footer-section {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      font-size: 1.5rem;
      font-size: var(--font-size-x-large);
      justify-content: space-between;
      line-height: normal;
      min-width: 12.68rem;
    }

  @media (max-width: 62.999rem) {

  .main-footer .links > .footer-section {
        margin: 1rem
    }
      }

  @media (min-width: 63rem) {

  .main-footer .links > .footer-section {
        padding: 0 1rem
    }
      }

  .main-footer .links > .footer-section .footer-title {
        font-weight: 700;
        font-weight: var(--bold);
        margin-bottom: 1rem;
      }

  .main-footer .links > .footer-section .social {
        display: flex;
      }

  .main-footer .links > .footer-section .social a {
          margin-right: 1rem;
        }

  .main-footer .links > .footer-section .social a svg {
            height: 1.5rem;
            width: 1.5rem;
          }

  .main-footer .links > .footer-section > button {
        align-items: center;
        display: flex;
        justify-content: center;
        margin-left: auto;
        padding: 0.5rem 2.8rem;
      }

  @media (max-width: 62.999rem) {

  .main-footer .links > .footer-section > button {
          align-self: center;
          margin: 0
      }
        }

  .main-footer .links > .footer-section > button svg {
          height: 1.5rem;
          width: 1.5rem;
        }

  .main-footer .secondary {
    margin-top: 2rem;
  }

.main-header.clean-layout ~ .main-footer {
  display: none;
}

body .theme-switcher {
  bottom: 1.5rem;
  bottom: var(--gap);
  max-width: -moz-max-content;
  max-width: max-content;
  opacity: 0.5;
  position: fixed;
  right: 1.5rem;
  right: var(--gap);
  z-index: 999;
}

.crs-form-dialog {
  --form-width: 25rem;
}

  .crs-form-dialog .dialog {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 90vw;
  }

  .crs-form-dialog .dialog .crs-form {
      max-width: unset;
    }

  .crs-form-dialog .dialog .crs-form > * {
        margin-left: auto;
        margin-right: auto;
      }

  .crs-form-dialog .dialog .crs-form > *:not(.crs-preview-wrapper) {
          max-width: min(calc(100vw - 1.5rem * 2), var(--form-width));
        }

  .crs-form-dialog .dialog .crs-form .crs-preview-wrapper {
        width: 100%;
      }

  .crs-form-dialog .dialog .crs-form .crs-preview-wrapper .pdf-preview {
          height: 30vh;
          width: 100%;
        }

  .crs-form-dialog .dialog .crs-form .crs-preview-wrapper .pdf-preview:only-child {
            height: 50vh;
          }

.crs-forms-wrapper {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}


/*# sourceMappingURL=main~7d4f1ab2.cb4d3e61.chunk.css.map*/