/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-primary: #173353;
    --color-secondary: #dc6204;
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .table {
    display: table;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .gap-x-5 {
    column-gap: calc(var(--spacing) * 5);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .text-center {
    text-align: center;
  }
  .text-justify {
    text-align: justify;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../Fonts/open-sans-v35-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../Fonts/open-sans-v35-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../Fonts/open-sans-v35-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../Fonts/open-sans-v35-latin-700.woff2') format('woff2');
}
:root {
  --fa-base-size: 1rem;
  --space-low: 1rem;
  --space-middle: 2rem;
  --space-high: 3rem;
  --space-very-high: 10rem;
}
@layer base {
  * {
    color: var(--color-primary);
  }
  h1 {
    margin-bottom: calc(var(--spacing) * 4);
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  h2 {
    margin-bottom: calc(var(--spacing) * 3);
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  h3 {
    margin-bottom: calc(var(--spacing) * 2);
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  p {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .ce-headline-center {
    text-align: center;
  }
  svg.iconpack {
    fill: var(--color-secondary);
  }
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
}
@layer components {
  #c1484 {
    background-color: rgb(240, 240, 240);
    margin-bottom: var(--space-low);
  }
  #c1484 * {
    display: flex;
    justify-content: center;
  }
  #c1485 {
    background-color: rgb(240, 240, 240);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: auto;
  }
  #c1486 * {
    display: flex;
    justify-content: center;
    padding-inline: 0;
    padding: 0;
  }
  #c1489,
    #c1498 .btn-primary,
    #c1506 a {
    background-color: rgb(64, 64, 64);
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 1rem;
    margin-top: var(--space-high);
    border: 2px solid rgb(240, 240, 240);
  }
  #c1489 *,
    #c1498 .btn-primary,
    #c1506 a {
    color: white;
  }
  #c1498 .btn-primary {
    width: 100%;
    display: block;
  }
  #c1489 {
    margin: 1.5rem 2.5rem;
  }
  #c1496 {
    padding-bottom: 2rem;
  }
  #c1493 {
    background-color: white;
  }
  #c1493 .container {
    padding-inline: 0;
  }
  #c1493 .frame {
    background-color: rgb(64, 64, 64);
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 1rem;
    border: 2px solid rgb(240, 240, 240);
  }
  #c1493 .grid {
    gap: 1.5rem;
    padding: 0;
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
  }
  #c1493 * {
    color: white;
  }
}
@media (max-width: 768px) {
  #c1488 {
    margin-top: -2.5rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    margin-bottom: 3rem;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 1.5rem 0;
  }
}
svg.iconpack {
  fill: white;
}
#c1493 .grid.stacked {
  grid-template-columns: 1fr;
}
#c1498 {
  margin: 1.5rem 0;
}
#c1498 h2 {
  display: none;
}
#c1498 form {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}
#c1498 .form-group {
  margin-bottom: 1.2rem;
}
#c1498 .control-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #173353;
  font-size: 0.9rem;
}
#c1498 .form-control {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid #d1d9e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #173353;
  background-color: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
#c1498 .form-control:focus {
  outline: none;
  border-color: #4284bf;
  box-shadow: 0 0 0 3px rgba(66, 132, 191, 0.15);
  background-color: white;
}
#c1498 .required {
  color: rgb(232, 2, 5);
  margin-left: 2px;
}
#c1498 .form-group:has(textarea) {
  display: none;
}
#c1498 .form-navigation,
#c1498 .btn-toolbar,
#c1498 .btn-group {
  display: block;
  width: 100%;
}
#funnel-analyse {
  text-align: left;
}
.funnel-analyse-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #173353;
  margin-bottom: 0.25rem;
}
.funnel-analyse-text {
  font-size: 1rem;
  font-weight: 600;
  color: #173353;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.funnel-followup-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: #173353;
  margin-bottom: 1rem;
}
.funnel-options {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.funnel-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d9e0;
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #173353;
  background-color: #f8fafc;
  transition: border-color 0.2s, background-color 0.2s;
}
.funnel-option:hover {
  border-color: #4284bf;
  background-color: #eef5fb;
}
.funnel-option.selected {
  border-color: #4284bf;
  background-color: #eef5fb;
}
.funnel-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #4284bf;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.funnel-checkbox.checked {
  background-color: #4284bf;
}
.funnel-checkbox.checked::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
#c1500 {
  margin-top: 1rem;
}
a.internal-link, a.link-external {
  color: rgb(232, 2, 5);
  text-decoration: none !important;
  transition: color 0.5s ease !important;
}
.internal-link:after {
  content: url(../Icons/links/internal_link.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 3px;
  position: relative;
  top: 3px;
}
.link-external:after {
  content: url(../Icons/links/external_link.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 3px;
  position: relative;
  top: 3px;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-border-style: solid;
    }
  }
}

@media (min-width: 769px) {
    body {
        margin: 0 calc(50% - 23rem);
    }

    html {
        background-image: url('../Images/Funnel/background_hr.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    #c1488 {
        margin: -2rem 5.5rem;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border-radius: 8px;
        padding-bottom: var(--space-low);
    }


    #c1496{
        margin: 1.5rem 0;
        padding-bottom: var(--space-low);
    }

    #c1489:hover {
        cursor: pointer;
    }
}
