@charset "UTF-8";
#cc-main {
  background: transparent;
  color: var(--cc-primary-color);
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  position: fixed;
  z-index: var(--cc-z-index);
}

#cc-main :after, #cc-main :before, #cc-main a, #cc-main button, #cc-main div, #cc-main h2, #cc-main input, #cc-main p, #cc-main span {
  all: unset;
  box-sizing: border-box;
}

#cc-main .pm__badge, #cc-main button {
  all: initial;
  box-sizing: border-box;
  color: unset;
  visibility: unset;
}

#cc-main .pm__badge, #cc-main a, #cc-main button, #cc-main input {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  outline: revert;
  outline-offset: 2px;
  overflow: hidden;
}

#cc-main table, #cc-main tbody, #cc-main td, #cc-main th, #cc-main thead, #cc-main tr {
  all: revert;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-modal-border-radius:.5rem;
  --cc-btn-border-radius:.4rem;
  --cc-modal-transition-duration:.25s;
  --cc-link-color:var(--cc-btn-primary-bg);
  --cc-modal-margin:1rem;
  --cc-z-index:2147483647;
  --cc-bg:#fff;
  --cc-primary-color:#2c2f31;
  --cc-secondary-color:#5e6266;
  --cc-btn-primary-bg:#30363c;
  --cc-btn-primary-color:#fff;
  --cc-btn-primary-border-color:var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg:#000;
  --cc-btn-primary-hover-color:#fff;
  --cc-btn-primary-hover-border-color:var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg:#eaeff2;
  --cc-btn-secondary-color:var(--cc-primary-color);
  --cc-btn-secondary-border-color:var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg:#d4dae0;
  --cc-btn-secondary-hover-color:#000;
  --cc-btn-secondary-hover-border-color:#d4dae0;
  --cc-separator-border-color:#f0f4f7;
  --cc-toggle-on-bg:var(--cc-btn-primary-bg);
  --cc-toggle-off-bg:#667481;
  --cc-toggle-on-knob-bg:#fff;
  --cc-toggle-off-knob-bg:var(--cc-toggle-on-knob-bg);
  --cc-toggle-enabled-icon-color:var(--cc-bg);
  --cc-toggle-disabled-icon-color:var(--cc-bg);
  --cc-toggle-readonly-bg:#d5dee2;
  --cc-toggle-readonly-knob-bg:#fff;
  --cc-toggle-readonly-knob-icon-color:var(--cc-toggle-readonly-bg);
  --cc-section-category-border:var(--cc-cookie-category-block-bg);
  --cc-cookie-category-block-bg:#f0f4f7;
  --cc-cookie-category-block-border:#f0f4f7;
  --cc-cookie-category-block-hover-bg:#e9eff4;
  --cc-cookie-category-block-hover-border:#e9eff4;
  --cc-cookie-category-expanded-block-bg:transparent;
  --cc-cookie-category-expanded-block-hover-bg:#dee4e9;
  --cc-overlay-bg:rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg:var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg:var(--cc-btn-primary-hover-bg);
  --cc-footer-bg:var(--cc-btn-secondary-bg);
  --cc-footer-color:var(--cc-secondary-color);
  --cc-footer-border-color:#e4eaed;
  --cc-pm-toggle-border-radius:4em;
}

#cc-main.cc--rtl {
  direction: rtl;
}

#cc-main .cm__title, #cc-main a, #cc-main b, #cc-main em, #cc-main strong {
  font-weight: 600;
}

#cc-main button > span {
  pointer-events: none;
}

#cc-main .cc__link, #cc-main a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  font-weight: 600;
  position: relative;
  transition: background-size 0.25s, color 0.25s ease;
}

#cc-main .cc__link:hover, #cc-main a:hover {
  background-size: 100% 1px;
  color: var(--cc-primary-color);
}

#cc-main .cc__link {
  color: var(--cc-link-color);
}

#cc-main .cm__desc, #cc-main .pm__body {
  overscroll-behavior: auto contain;
  scrollbar-width: thin;
}

@media screen and (min-width: 640px) {
  #cc-main ::-webkit-scrollbar, #cc-main ::-webkit-scrollbar-thumb, #cc-main ::-webkit-scrollbar-track {
    all: revert;
  }
  #cc-main ::-webkit-scrollbar-thumb {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: var(--cc-toggle-readonly-bg);
    border: 0.25rem solid var(--cc-bg);
    border-radius: 1rem;
  }
  #cc-main ::-webkit-scrollbar-thumb:hover {
    background: var(--cc-toggle-off-bg);
  }
  #cc-main ::-webkit-scrollbar {
    background: transparent;
    width: 12px;
  }
}
html.disable--interaction.show--consent, html.disable--interaction.show--consent body {
  height: auto !important;
  overflow: hidden !important;
}

@media (prefers-reduced-motion) {
  #cc-main {
    --cc-modal-transition-duration:0s;
  }
}
.cc--darkmode {
  --cc-bg:#161a1c;
  --cc-primary-color:#ebf3f6;
  --cc-secondary-color:#aebbc5;
  --cc-btn-primary-bg:#c2d0e0;
  --cc-btn-primary-color:var(--cc-bg);
  --cc-btn-primary-border-color:var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg:#98a7b6;
  --cc-btn-primary-hover-color:#000;
  --cc-btn-primary-hover-border-color:var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg:#242c31;
  --cc-btn-secondary-color:var(--cc-primary-color);
  --cc-btn-secondary-border-color:var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg:#353d43;
  --cc-btn-secondary-hover-color:#fff;
  --cc-btn-secondary-hover-border-color:var(--cc-btn-secondary-hover-bg);
  --cc-separator-border-color:#222a30;
  --cc-toggle-on-bg:var(--cc-btn-primary-bg);
  --cc-toggle-off-bg:#525f6b;
  --cc-toggle-on-knob-bg:var(--cc-btn-primary-color);
  --cc-toggle-off-knob-bg:var(--cc-btn-primary-color);
  --cc-toggle-enabled-icon-color:var(--cc-btn-primary-color);
  --cc-toggle-disabled-icon-color:var(--cc-btn-primary-color);
  --cc-toggle-readonly-bg:#343e45;
  --cc-toggle-readonly-knob-bg:#5f6b72;
  --cc-toggle-readonly-knob-icon-color:var(--cc-toggle-readonly-bg);
  --cc-section-category-border:#1e2428;
  --cc-cookie-category-block-bg:#1e2428;
  --cc-cookie-category-block-border:var(--cc-section-category-border);
  --cc-cookie-category-block-hover-bg:#242c31;
  --cc-cookie-category-block-hover-border:#232a2f;
  --cc-cookie-category-expanded-block-bg:transparent;
  --cc-cookie-category-expanded-block-hover-bg:var(--cc-toggle-readonly-bg);
  --cc-overlay-bg:rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg:var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg:var(--cc-btn-primary-hover-bg);
  --cc-footer-bg:#0c0e0f;
  --cc-footer-color:var(--cc-secondary-color);
  --cc-footer-border-color:#060809;
}

.cc--darkmode #cc-main {
  color-scheme: dark;
}

#cc-main .cm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: flex;
  flex-direction: column;
  max-width: 24rem;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  transform: translateY(1.6em);
  visibility: hidden;
  z-index: 1;
}

#cc-main .cm--top {
  top: var(--cc-modal-margin);
}

#cc-main .cm--middle {
  top: 50%;
  transform: translateY(calc(-50% + 1.6em));
}

#cc-main .cm--bottom {
  bottom: var(--cc-modal-margin);
}

#cc-main .cm--center {
  left: var(--cc-modal-margin);
  margin: 0 auto;
  right: var(--cc-modal-margin);
  width: unset;
}

#cc-main .cm--left {
  left: var(--cc-modal-margin);
  margin-right: var(--cc-modal-margin);
}

#cc-main .cm--right {
  margin-left: var(--cc-modal-margin);
  right: var(--cc-modal-margin);
}

#cc-main .cm__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

#cc-main .cm__btns, #cc-main .cm__links {
  padding: 1rem 1.3rem;
  width: unset;
}

#cc-main .cm__texts {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 0;
}

#cc-main .cm__desc, #cc-main .cm__title {
  padding: 0 1.3rem;
}

#cc-main .cm__title {
  font-size: 1.05em;
}

#cc-main .cm__title + .cm__desc {
  margin-top: 1.1em;
}

#cc-main .cm__desc {
  color: var(--cc-secondary-color);
  font-size: 0.9em;
  line-height: 1.5;
  max-height: 40vh;
  overflow-x: visible;
  overflow-y: auto;
  padding-bottom: 1em;
}

#cc-main .cm__btns {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#cc-main .cm__btn-group {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
}

#cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
  margin-top: 0.375rem;
}

#cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--inline .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--inline.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-right: 0;
}

#cc-main .cm--wide .cm__btn + .cm__btn, #cc-main .cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--wide.cm--flip .cm__btn + .cm__btn, #cc-main .cm--wide.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn-group--uneven, #cc-main .cm--wide .cm__btn-group--uneven {
  display: flex;
  flex: 1;
  justify-content: space-between;
}

#cc-main .cm--bar:not(.cm--inline).cm--flip .cm__btn-group--uneven, #cc-main .cm--wide.cm--flip .cm__btn-group--uneven {
  flex-direction: row-reverse;
}

#cc-main .cm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  padding: 0.5em 1em;
  text-align: center;
}

#cc-main .cm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}

#cc-main .cm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}

#cc-main .cm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__btn--close {
  border-radius: 0;
  border-bottom-left-radius: var(--cc-btn-border-radius);
  border-right: none;
  border-top: none;
  display: none;
  font-size: 1em;
  height: 42px;
  min-width: auto !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}

#cc-main .cm__btn--close svg {
  stroke: var(--cc-btn-primary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}

#cc-main .cm__btn--close:hover svg {
  stroke: var(--cc-btn-primary-hover-color);
}

#cc-main .cm__btn--close.cm__btn--secondary svg {
  stroke: var(--cc-btn-secondary-color);
}

#cc-main .cm__btn--close.cm__btn--secondary:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__btn--close + .cm__texts .cm__title {
  padding-right: 3rem;
}

#cc-main .cm--inline .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm__footer {
  background: var(--cc-footer-bg);
  border-top: 1px solid var(--cc-footer-border-color);
  color: var(--cc-footer-color);
  padding: 0.4em 0 0.5em;
}

#cc-main .cm__links {
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
  padding-top: 0;
}

#cc-main .cm__link-group {
  display: flex;
  flex-direction: row;
  font-size: 0.8em;
  width: 100%;
}

#cc-main .cm__link-group > * + * {
  margin-left: 1.3rem;
}

#cc-main .cm--flip .cm__btn:last-child {
  grid-row: 1;
}

#cc-main .cm--inline.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--box .cm__btn--close {
  display: block;
}

#cc-main .cm--box.cm--flip .cm__btns {
  flex-direction: column-reverse;
}

#cc-main .cm--box.cm--wide {
  max-width: 36em;
}

#cc-main .cm--box.cm--wide .cm__btns {
  flex-direction: row;
  justify-content: space-between;
}

#cc-main .cm--box.cm--wide .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm--box.cm--wide .cm__btn {
  min-width: 120px;
  padding-left: 1.8em;
  padding-right: 1.8em;
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btns {
  flex-direction: row-reverse;
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--cloud {
  max-width: 54em;
  width: unset;
}

#cc-main .cm--cloud .cm__body {
  flex-direction: row;
}

#cc-main .cm--cloud .cm__texts {
  flex: 1;
}

#cc-main .cm--cloud .cm__desc {
  max-height: 9.4em;
}

#cc-main .cm--cloud .cm__btns {
  border-left: 1px solid var(--cc-separator-border-color);
  border-top: none;
  max-width: 23em;
}

#cc-main .cm--cloud .cm__btn-group {
  flex-direction: column;
}

#cc-main .cm--cloud .cm__btn {
  min-width: 19em;
}

#cc-main .cm--cloud.cm--flip .cm__btn-group, #cc-main .cm--cloud.cm--flip .cm__btns {
  flex-direction: column-reverse;
}

#cc-main .cm--cloud.cm--inline .cm__btn-group {
  flex-direction: row;
}

#cc-main .cm--cloud.cm--inline .cm__btn {
  min-width: 10em;
}

#cc-main .cm--cloud.cm--inline.cm--flip .cm__btn-group {
  flex-direction: row-reverse;
}

#cc-main .cm--bar {
  border-radius: 0;
  left: 0;
  margin: 0;
  max-width: unset;
  opacity: 1;
  right: 0;
  transform: translateY(0);
  width: 100vw;
  --cc-modal-transition-duration:.35s;
}

#cc-main .cm--bar.cm--top {
  top: 0;
  transform: translateY(-100%);
}

#cc-main .cm--bar.cm--bottom {
  bottom: 0;
  transform: translateY(100%);
}

#cc-main .cm--bar .cm__body, #cc-main .cm--bar .cm__links {
  margin: 0 auto;
  max-width: 55em;
  width: 100%;
}

#cc-main .cm--bar .cm__body {
  padding: 0.5em 0 0.9em;
}

#cc-main .cm--bar .cm__btns {
  border-top: none;
  flex-direction: row;
  justify-content: space-between;
}

#cc-main .cm--bar .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--bar .cm__btn {
  min-width: 120px;
  padding-left: 2em;
  padding-right: 2em;
}

#cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--bar.cm--flip .cm__btns {
  flex-direction: row-reverse;
}

#cc-main .cm--bar.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--bar.cm--inline .cm__body, #cc-main .cm--bar.cm--inline .cm__links {
  max-width: 74em;
}

#cc-main .cm--bar.cm--inline .cm__body {
  flex-direction: row;
  padding: 0;
}

#cc-main .cm--bar.cm--inline .cm__btns {
  flex-direction: column;
  justify-content: center;
  max-width: 23em;
}

#cc-main .cm--bar.cm--inline.cm--flip .cm__btns {
  flex-direction: column-reverse;
}

#cc-main .cc--anim .cm, #cc-main .cc--anim.cm-wrapper:before {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}

#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.disable--interaction #cc-main .cm-wrapper:before {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 0;
}

.show--consent #cc-main .cc--anim .cm {
  opacity: 1;
  transform: translateY(0);
  visibility: visible !important;
}

.show--consent #cc-main .cc--anim .cm--middle {
  transform: translateY(-50%);
}

.show--consent #cc-main .cc--anim .cm--bar {
  transform: translateY(0);
}

.show--consent #cc-main .cc--anim.cm-wrapper:before {
  opacity: 1;
  visibility: visible;
}

#cc-main.cc--rtl .cm__btn--close {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: var(--cc-btn-border-radius);
  left: 0;
  right: unset;
}

#cc-main.cc--rtl .cm__btn--close + .cm__texts .cm__title {
  padding-left: 3rem !important;
  padding-right: 1.3rem;
}

#cc-main.cc--rtl .cm--inline .cm__btn + .cm__btn {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn-group + .cm__btn-group, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar.cm--flip .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .cm__link-group > * + * {
  margin-left: 0;
  margin-right: 1.3rem;
}

@media screen and (max-width: 640px) {
  #cc-main {
    --cc-modal-margin:.5em;
  }
  #cc-main .cm {
    max-width: none !important;
    width: auto !important;
  }
  #cc-main .cm__body {
    flex-direction: column !important;
    padding: 0 !important;
  }
  #cc-main .cm__btns, #cc-main .cm__desc, #cc-main .cm__links, #cc-main .cm__title {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }
  #cc-main .cm__btns {
    border-left: none !important;
    border-top: 1px solid var(--cc-separator-border-color) !important;
    flex-direction: column !important;
    max-width: none !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .cm__btn-group {
    display: flex !important;
    flex-direction: column !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn {
    flex: auto !important;
  }
  #cc-main .cm__link-group {
    justify-content: center !important;
  }
  #cc-main .cm--flip .cm__btn-group, #cc-main .cm--flip .cm__btns {
    flex-direction: column-reverse !important;
  }
}
#cc-main .pm-wrapper {
  position: relative;
  z-index: 2;
}

#cc-main .pm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: flex;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  visibility: hidden;
  width: 100%;
  width: unset;
  z-index: 1;
}

#cc-main svg {
  fill: none;
  width: 100%;
}

#cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
  padding: 1em 1.4em;
}

#cc-main .pm__header {
  align-items: center;
  border-bottom: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between;
}

#cc-main .pm__title {
  align-items: center;
  display: flex;
  flex: 1;
  font-weight: 600;
  margin-right: 2em;
}

#cc-main .pm__close-btn {
  background: var(--cc-btn-secondary-bg);
  border: 1px solid var(--cc-btn-secondary-border-color);
  border-radius: var(--cc-btn-border-radius);
  height: 40px;
  position: relative;
  transition: all 0.15s ease;
  width: 40px;
}

#cc-main .pm__close-btn span {
  display: flex;
  height: 100%;
  width: 100%;
}

#cc-main .pm__close-btn svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}

#cc-main .pm__close-btn:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
}

#cc-main .pm__close-btn:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}

#cc-main .pm__body {
  flex: 1;
  overflow-y: auto;
  overflow-y: overlay;
}

#cc-main .pm__section, #cc-main .pm__section--toggle {
  border-radius: var(--cc-btn-border-radius);
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5em;
}

#cc-main .pm__section--toggle .pm__section-desc-wrapper {
  border: 1px solid var(--cc-cookie-category-block-border);
  border-radius: var(--cc-btn-border-radius);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
  margin-top: 0 !important;
  overflow: hidden;
}

#cc-main .pm__section {
  border: 1px solid var(--cc-separator-border-color);
  padding: 1em;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

#cc-main .pm__section:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none;
}

#cc-main .pm__section:not(:first-child):hover {
  background: var(--cc-cookie-category-block-bg);
  border-color: var(--cc-cookie-category-block-border);
}

#cc-main .pm__section-toggles + .pm__section {
  margin-top: 2em;
}

#cc-main .pm__section--toggle {
  background: var(--cc-cookie-category-block-bg);
  border-top: none;
  margin-bottom: 0.375rem;
}

#cc-main .pm__section--toggle .pm__section-title {
  align-items: center;
  background: var(--cc-cookie-category-block-bg);
  border: 1px solid var(--cc-cookie-category-block-border);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 1.1em 5.4em 1.1em 1.2em;
  position: relative;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  width: 100%;
}

#cc-main .pm__section--toggle .pm__section-title:hover {
  background: var(--cc-cookie-category-block-hover-bg);
  border-color: var(--cc-cookie-category-block-hover-border);
}

#cc-main .pm__section--toggle .pm__section-desc {
  margin-top: 0;
  padding: 1em;
}

#cc-main .pm__section--toggle.is-expanded {
  --cc-cookie-category-block-bg:var(--cc-cookie-category-expanded-block-bg);
  --cc-cookie-category-block-border:var(--cc-cookie-category-expanded-block-hover-bg);
}

#cc-main .pm__section--toggle.is-expanded .pm__section-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#cc-main .pm__section--toggle.is-expanded .pm__section-arrow svg {
  transform: scale(0.5) rotate(180deg);
}

#cc-main .pm__section--toggle.is-expanded .pm__section-desc-wrapper {
  display: flex;
}

#cc-main .pm__section--expandable .pm__section-title {
  cursor: pointer;
  padding-left: 3.4em;
}

#cc-main .pm__section--expandable .pm__section-arrow {
  background: var(--cc-toggle-readonly-bg);
  border-radius: 100%;
  display: flex;
  height: 20px;
  justify-content: center;
  left: 18px;
  pointer-events: none;
  position: absolute;
  width: 20px;
}

#cc-main .pm__section--expandable .pm__section-arrow svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
}

#cc-main .pm__section-title-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

#cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
  margin-top: 0.85em;
}

#cc-main .pm__section-title {
  border-radius: var(--cc-btn-border-radius);
  font-size: 0.95em;
  font-weight: 600;
}

#cc-main .pm__badge {
  align-items: center;
  background: var(--cc-btn-secondary-bg);
  border-radius: 5em;
  color: var(--cc-secondary-color);
  display: flex;
  flex: none;
  font-size: 0.8em;
  font-weight: 600;
  height: 23px;
  justify-content: center;
  margin-left: 1em;
  min-width: 23px;
  overflow: hidden;
  padding: 0 0.6em 1px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: auto;
}

#cc-main .pm__service-counter {
  background: var(--cc-btn-primary-bg);
  color: var(--cc-btn-primary-color);
  padding: 0;
  width: 23px;
}

#cc-main .pm__service-counter[data-counterlabel] {
  padding: 0 0.6em 1px;
  width: auto;
}

#cc-main .section__toggle, #cc-main .section__toggle-wrapper, #cc-main .toggle__icon, #cc-main .toggle__label {
  border-radius: var(--cc-pm-toggle-border-radius);
  height: 23px;
  transform: translateZ(0);
  width: 50px;
}

#cc-main .section__toggle-wrapper {
  cursor: pointer;
  position: absolute;
  right: 18px;
  z-index: 1;
}

#cc-main .toggle-service {
  height: 19px;
  position: relative;
  right: 0;
  width: 42px;
}

#cc-main .toggle-service .section__toggle, #cc-main .toggle-service .toggle__icon, #cc-main .toggle-service .toggle__label {
  height: 19px;
  width: 42px;
}

#cc-main .toggle-service .toggle__icon {
  position: relative;
}

#cc-main .toggle-service .toggle__icon-circle {
  height: 19px;
  width: 19px;
}

#cc-main .toggle-service .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(23px);
}

#cc-main .pm__section--toggle:nth-child(2) .section__toggle-wrapper:after {
  display: none !important;
}

#cc-main .section__toggle {
  border: 0;
  cursor: pointer;
  display: block;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
}

#cc-main .section__toggle:disabled {
  cursor: not-allowed;
}

#cc-main .toggle__icon {
  background: var(--cc-toggle-off-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-off-bg);
  display: flex;
  flex-direction: row;
  pointer-events: none;
  position: absolute;
  transition: all 0.25s ease;
}

#cc-main .toggle__icon-circle {
  background: var(--cc-toggle-off-knob-bg);
  border: none;
  border-radius: var(--cc-pm-toggle-border-radius);
  box-shadow: 0 1px 2px rgba(24, 32, 3, 0.36);
  display: block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
  width: 23px;
}

#cc-main .toggle__icon-off, #cc-main .toggle__icon-on {
  height: 100%;
  position: absolute;
  transition: opacity 0.15s ease;
  width: 100%;
}

#cc-main .toggle__icon-on {
  opacity: 0;
  transform: rotate(45deg);
}

#cc-main .toggle__icon-on svg {
  stroke: var(--cc-toggle-on-bg);
  transform: scale(0.55) rotate(-45deg);
}

#cc-main .toggle__icon-off {
  opacity: 1;
}

#cc-main .toggle__icon-off svg {
  stroke: var(--cc-toggle-off-bg);
  transform: scale(0.55);
}

#cc-main .section__toggle:checked ~ .toggle__icon {
  background: var(--cc-toggle-on-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-on-bg);
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  background-color: var(--cc-toggle-on-knob-bg);
  transform: translateX(27px);
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-on {
  opacity: 1;
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-off {
  opacity: 0;
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon {
  background: var(--cc-toggle-readonly-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-readonly-bg);
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon .toggle__icon-circle {
  background: var(--cc-toggle-readonly-knob-bg);
  box-shadow: none;
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon svg {
  stroke: var(--cc-toggle-readonly-knob-icon-color);
}

#cc-main .toggle__label {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}

#cc-main .pm__section-desc-wrapper {
  color: var(--cc-secondary-color);
  display: flex;
  flex-direction: column;
  font-size: 0.9em;
}

#cc-main .pm__section-desc-wrapper > :not(:last-child) {
  border-bottom: 1px solid var(--cc-cookie-category-block-border);
}

#cc-main .pm__section-services {
  display: flex;
  flex-direction: column;
}

#cc-main .pm__service {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.4em 1.2em;
  position: relative;
  transition: background-color 0.15s ease;
}

#cc-main .pm__service:hover {
  background-color: var(--cc-cookie-category-block-hover-bg);
}

#cc-main .pm__service-header {
  align-items: center;
  display: flex;
  margin-right: 1em;
  width: 100%;
}

#cc-main .pm__service-icon {
  border: 2px solid;
  border-radius: 100%;
  height: 8px;
  margin-left: 6px;
  margin-right: 20px;
  margin-top: 1px;
  min-width: 8px;
}

#cc-main .pm__service-title {
  font-size: 0.95em;
  width: 100%;
  word-break: break-word;
}

#cc-main .pm__section-desc {
  line-height: 1.5em;
}

#cc-main .pm__section-table {
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

#cc-main .pm__table-caption {
  text-align: left;
}

#cc-main .pm__table-caption, #cc-main .pm__table-head > tr {
  border-bottom: 1px dashed var(--cc-separator-border-color);
  color: var(--cc-primary-color);
  font-weight: 600;
}

#cc-main .pm__table-tr {
  transition: background-color 0.15s ease;
}

#cc-main .pm__table-tr:hover {
  background: var(--cc-cookie-category-block-hover-bg);
}

#cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th {
  padding: 0.625em 0.625em 0.625em 1.2em;
  vertical-align: top;
}

#cc-main .pm__footer {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between;
}

#cc-main .pm__btn-group {
  display: flex;
}

#cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
}

#cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .pm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  flex: auto;
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  min-width: 110px;
  padding: 0.5em 1.5em;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#cc-main .pm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}

#cc-main .pm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}

#cc-main .pm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

#cc-main .pm--box {
  height: calc(100% - 2em);
  left: var(--cc-modal-margin);
  margin: 0 auto;
  max-height: 37.5em;
  max-width: 43em;
  right: var(--cc-modal-margin);
  top: 50%;
  transform: translateY(calc(-50% + 1.6em));
}

#cc-main .pm--box.pm--flip .pm__btn-group, #cc-main .pm--box.pm--flip .pm__footer {
  flex-direction: row-reverse;
}

#cc-main .pm--bar {
  border-radius: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: 29em;
  opacity: 1;
  top: 0;
  width: 100%;
  --cc-modal-transition-duration:.35s;
}

#cc-main .pm--bar .pm__section-table, #cc-main .pm--bar .pm__table-body, #cc-main .pm--bar .pm__table-td, #cc-main .pm--bar .pm__table-th, #cc-main .pm--bar .pm__table-tr {
  display: block;
}

#cc-main .pm--bar .pm__table-head {
  display: none;
}

#cc-main .pm--bar .pm__table-caption {
  display: block;
}

#cc-main .pm--bar .pm__table-tr:not(:last-child) {
  border-bottom: 1px solid var(--cc-separator-border-color);
}

#cc-main .pm--bar .pm__table-td {
  display: flex;
  justify-content: space-between;
}

#cc-main .pm--bar .pm__table-td:before {
  color: var(--cc-primary-color);
  content: attr(data-column);
  flex: 1;
  font-weight: 600;
  min-width: 100px;
  overflow: hidden;
  padding-right: 2em;
  text-overflow: ellipsis;
}

#cc-main .pm--bar .pm__table-td > div {
  flex: 3;
}

#cc-main .pm--bar:not(.pm--wide) .pm__body, #cc-main .pm--bar:not(.pm--wide) .pm__footer, #cc-main .pm--bar:not(.pm--wide) .pm__header {
  padding: 1em 1.3em;
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn-group, #cc-main .pm--bar:not(.pm--wide) .pm__footer {
  flex-direction: column;
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin: 0.375rem 0 0;
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__footer {
  flex-direction: column-reverse;
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group + .pm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}

#cc-main .pm--bar:not(.pm--wide) .pm__badge {
  display: none;
}

#cc-main .pm--bar.pm--left {
  left: 0;
  transform: translateX(-100%);
}

#cc-main .pm--bar.pm--right {
  right: 0;
  transform: translateX(100%);
}

#cc-main .pm--bar.pm--wide {
  max-width: 35em;
}

#cc-main .pm--bar.pm--wide .pm__body, #cc-main .pm--bar.pm--wide .pm__footer, #cc-main .pm--bar.pm--wide .pm__header {
  padding: 1em 1.4em;
}

#cc-main .pm--bar.pm--wide.pm--flip .pm__btn-group, #cc-main .pm--bar.pm--wide.pm--flip .pm__footer {
  flex-direction: row-reverse;
}

#cc-main .pm-overlay {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}

#cc-main .cc--anim .pm, #cc-main .cc--anim .pm-overlay {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}

.show--preferences #cc-main .cc--anim .pm {
  opacity: 1;
  visibility: visible !important;
}

.show--preferences #cc-main .cc--anim .pm--box {
  transform: translateY(-50%);
}

.show--preferences #cc-main .cc--anim .pm--bar {
  transform: translateX(0);
}

.show--preferences #cc-main .cc--anim .pm-overlay {
  opacity: 1;
  visibility: visible;
}

#cc-main.cc--rtl .pm__service-header {
  margin-left: 1em;
  margin-right: 0;
}

#cc-main.cc--rtl .pm__section-arrow {
  left: unset;
  right: 18px;
}

#cc-main.cc--rtl .section__toggle-wrapper {
  left: 18px;
  right: unset;
  transform-origin: left;
}

#cc-main.cc--rtl .toggle-service {
  left: 0;
}

#cc-main.cc--rtl .pm__service-icon {
  margin-left: 20px;
  margin-right: 5px;
}

#cc-main.cc--rtl .pm__section--toggle .pm__section-title {
  padding-left: 5.4em;
  padding-right: 1.2em;
}

#cc-main.cc--rtl .pm__section--expandable .pm__section-title {
  padding-right: 3.4em;
}

#cc-main.cc--rtl .pm__badge {
  margin-left: unset;
  margin-right: 1em;
}

#cc-main.cc--rtl .toggle__icon-circle {
  transform: translateX(27px);
}

#cc-main.cc--rtl .toggle-service .toggle__icon-circle {
  transform: translateX(23px);
}

#cc-main.cc--rtl .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(0);
}

#cc-main.cc--rtl .pm__table-td, #cc-main.cc--rtl .pm__table-th {
  padding-left: unset;
  padding-right: 1.2em;
  text-align: right;
}

#cc-main.cc--rtl .pm__table-td {
  padding-left: unset;
  padding-right: 1.2em;
}

#cc-main.cc--rtl .pm__table-td:before {
  padding-left: 2em;
  padding-right: unset;
}

#cc-main.cc--rtl .pm__btn + .pm__btn, #cc-main.cc--rtl .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .pm--flip .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin-left: 0;
}

@media screen and (max-width: 640px) {
  #cc-main .pm {
    border-radius: 0;
    bottom: 0;
    height: auto;
    left: 0;
    max-height: 100%;
    max-width: none !important;
    right: 0;
    top: 0;
    transform: translateY(1.6em);
  }
  #cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
    padding: 0.9em !important;
  }
  #cc-main .pm__badge {
    display: none;
  }
  #cc-main .pm__section-table, #cc-main .pm__table-body, #cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th, #cc-main .pm__table-tr {
    display: block;
  }
  #cc-main .pm__table-head {
    display: none;
  }
  #cc-main .pm__table-tr:not(:last-child) {
    border-bottom: 1px solid var(--cc-separator-border-color);
  }
  #cc-main .pm__table-td {
    display: flex;
    justify-content: space-between;
  }
  #cc-main .pm__table-td:before {
    color: var(--cc-primary-color);
    content: attr(data-column);
    flex: 1;
    font-weight: 600;
    min-width: 100px;
    overflow: hidden;
    padding-right: 2em;
    text-overflow: ellipsis;
  }
  #cc-main .pm__table-td > div {
    flex: 3;
  }
  #cc-main .pm__btn-group, #cc-main .pm__footer {
    flex-direction: column !important;
  }
  #cc-main .pm__btn-group {
    display: flex !important;
  }
  #cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .pm--flip .pm__btn-group, #cc-main .pm--flip .pm__footer {
    flex-direction: column-reverse !important;
  }
  .show--preferences #cc-main .cc--anim .pm {
    transform: translateY(0) !important;
  }
}
/* =========================
   Basis-Palette
   ========================= */
/* =========================
   Globale Bootstrap-Mappings
   ========================= */
:root {
  /* Semantische Hauptfarben */
  --bs-primary: #0066b3;
  --bs-secondary: #4d4d4d;
  --bs-success: #2e7d32;
  --bs-info: #ff6600;
  --bs-warning: #ffcc00;
  --bs-danger: #c62828;
  --bs-light: #f5f6f7;
  --bs-dark: #111111;
  --bs-primary-rgb: 0, 102, 179;
  --bs-secondary-rgb: 77, 77, 77;
  --bs-success-rgb: 46, 125, 50;
  --bs-info-rgb: 255, 102, 0;
  --bs-warning-rgb: 255, 204, 0;
  --bs-danger-rgb: 198, 40, 40;
  --bs-light-rgb: 245, 246, 247;
  --bs-dark-rgb: 17, 17, 17;
  /* Body / Typografie */
  --bs-body-color: #1a1a1a;
  --bs-body-color-rgb: 26, 26, 26;
  --bs-body-bg: #ffffff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000000;
  --bs-secondary-color: #4d4d4d;
  --bs-secondary-color-rgb: 77, 77, 77;
  --bs-tertiary-color: rgba(26, 26, 26, 0.65);
  --bs-tertiary-color-rgb: 26, 26, 26;
  --bs-heading-color: inherit;
  /* Links */
  --bs-link-color: #0066b3;
  --bs-link-color-rgb: 0, 102, 179;
  --bs-link-hover-color: rgb(0, 78.7508379888, 138.2);
  --bs-link-hover-color-rgb: 0, 79, 138;
  /* Border / Focus */
  --bs-border-color: #d9dde2;
  --bs-border-color-translucent: rgba(217, 221, 226, 0.55);
  --bs-focus-ring-color: rgba(0, 102, 179, 0.28);
  /* Hintergründe */
  --bs-secondary-bg: #f5f6f7;
  --bs-tertiary-bg: rgb(249, 249.6, 250.2);
  --bs-card-bg: #ffffff;
  --bs-card-cap-bg: #f5f6f7;
  --bs-dropdown-bg: #ffffff;
  --bs-dropdown-link-hover-bg: #f5f6f7;
  --bs-modal-content-bg: #ffffff;
  /* Radius */
  --bs-border-radius: 0.5rem;
  --bs-border-radius-sm: 0.35rem;
  --bs-border-radius-lg: 0.75rem;
}

/* =========================
   Basis-Elemente
   ========================= */
body {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}

a {
  color: var(--bs-link-color);
}
a:hover, a:focus {
  color: var(--bs-link-hover-color);
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.text-warning {
  color: #9a7800 !important;
}

.text-info {
  color: var(--bs-info) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: #fff !important;
}

.bg-warning {
  background-color: var(--bs-warning) !important;
  color: #000 !important;
}

.bg-info {
  background-color: var(--bs-info) !important;
  color: #fff !important;
}

.border-primary {
  border-color: var(--bs-primary) !important;
}

.border-secondary {
  border-color: var(--bs-secondary) !important;
}

.border-warning {
  border-color: var(--bs-warning) !important;
}

.border-info {
  border-color: var(--bs-info) !important;
}

/* =========================
   Buttons
   ========================= */
.btn {
  --bs-btn-border-radius: 0.5rem;
  --bs-btn-font-weight: 600;
}

/* Primary = VR-Blau */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0066b3;
  --bs-btn-border-color: #0066b3;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 78.7508379888, 138.2);
  --bs-btn-hover-border-color: rgb(0, 78.7508379888, 138.2);
  --bs-btn-focus-shadow-rgb: 0, 102, 179;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 67.1262569832, 117.8);
  --bs-btn-active-border-color: rgb(0, 67.1262569832, 117.8);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0066b3;
  --bs-btn-disabled-border-color: #0066b3;
}

/* Secondary = gedecktes Grau */
.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4d4d4d;
  --bs-btn-border-color: #4d4d4d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(56.6, 56.6, 56.6);
  --bs-btn-hover-border-color: rgb(56.6, 56.6, 56.6);
  --bs-btn-focus-shadow-rgb: 77, 77, 77;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(46.4, 46.4, 46.4);
  --bs-btn-active-border-color: rgb(46.4, 46.4, 46.4);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #4d4d4d;
  --bs-btn-disabled-border-color: #4d4d4d;
}

/* Info = Orange */
.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #ff6600;
  --bs-btn-border-color: #ff6600;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(224.4, 89.76, 0);
  --bs-btn-hover-border-color: rgb(224.4, 89.76, 0);
  --bs-btn-focus-shadow-rgb: 255, 102, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(204, 81.6, 0);
  --bs-btn-active-border-color: rgb(204, 81.6, 0);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ff6600;
  --bs-btn-disabled-border-color: #ff6600;
}

/* Warning = Gelb */
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffcc00;
  --bs-btn-border-color: #ffcc00;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(224.4, 179.52, 0);
  --bs-btn-hover-border-color: rgb(224.4, 179.52, 0);
  --bs-btn-focus-shadow-rgb: 255, 204, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(204, 163.2, 0);
  --bs-btn-active-border-color: rgb(204, 163.2, 0);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffcc00;
  --bs-btn-disabled-border-color: #ffcc00;
}

/* Outline-Buttons */
.btn-outline-primary {
  --bs-btn-color: #0066b3;
  --bs-btn-border-color: #0066b3;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0066b3;
  --bs-btn-hover-border-color: #0066b3;
  --bs-btn-focus-shadow-rgb: 0, 102, 179;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 67.1262569832, 117.8);
  --bs-btn-active-border-color: rgb(0, 67.1262569832, 117.8);
}

.btn-outline-secondary {
  --bs-btn-color: #4d4d4d;
  --bs-btn-border-color: #4d4d4d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4d4d4d;
  --bs-btn-hover-border-color: #4d4d4d;
  --bs-btn-focus-shadow-rgb: 77, 77, 77;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(46.4, 46.4, 46.4);
  --bs-btn-active-border-color: rgb(46.4, 46.4, 46.4);
}

.btn-outline-info {
  --bs-btn-color: #ff6600;
  --bs-btn-border-color: #ff6600;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff6600;
  --bs-btn-hover-border-color: #ff6600;
  --bs-btn-focus-shadow-rgb: 255, 102, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(204, 81.6, 0);
  --bs-btn-active-border-color: rgb(204, 81.6, 0);
}

.btn-outline-warning {
  --bs-btn-color: rgb(76.5, 61.2, 0);
  --bs-btn-border-color: #ffcc00;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffcc00;
  --bs-btn-hover-border-color: #ffcc00;
  --bs-btn-focus-shadow-rgb: 255, 204, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(204, 163.2, 0);
  --bs-btn-active-border-color: rgb(204, 163.2, 0);
}

/* =========================
   Formulare
   ========================= */
.form-control,
.form-select {
  border-color: var(--bs-border-color);
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(0, 102, 179, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 179, 0.18);
}

.form-check-input:checked {
  background-color: #0066b3;
  border-color: #0066b3;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 179, 0.18);
}

.form-range::-webkit-slider-thumb {
  background: #0066b3;
}

.form-range::-moz-range-thumb {
  background: #0066b3;
}

/* =========================
   Navigation / Tabs / Pagination
   ========================= */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #0066b3;
  color: #fff;
}

.nav-tabs {
  --bs-nav-tabs-link-active-color: #0066b3;
  --bs-nav-tabs-link-active-border-color: #d9dde2 #d9dde2 #ffffff;
  --bs-nav-tabs-link-hover-border-color: rgb(204, 224.4, 239.8);
}

.pagination {
  --bs-pagination-color: #0066b3;
  --bs-pagination-hover-color: rgb(0, 78.7508379888, 138.2);
  --bs-pagination-focus-color: rgb(0, 78.7508379888, 138.2);
  --bs-pagination-active-bg: #0066b3;
  --bs-pagination-active-border-color: #0066b3;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(0, 102, 179, 0.18);
}

/* =========================
   Dropdowns / Listgroup
   ========================= */
.dropdown-item:hover, .dropdown-item:focus {
  background-color: #f5f6f7;
  color: #1a1a1a;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: #0066b3;
  color: #fff;
}

.list-group {
  --bs-list-group-active-bg: #0066b3;
  --bs-list-group-active-border-color: #0066b3;
}

/* =========================
   Alerts
   ========================= */
.alert-primary {
  --bs-alert-color: rgb(0, 38.0648044693, 66.8);
  --bs-alert-bg: rgb(224.4, 236.64, 245.88);
  --bs-alert-border-color: rgb(183.6, 212.16, 233.72);
}

.alert-secondary {
  --bs-alert-color: #1a1a1a;
  --bs-alert-bg: rgb(237.2, 237.2, 237.2);
  --bs-alert-border-color: rgb(212.28, 212.28, 212.28);
}

.alert-info {
  --bs-alert-color: rgb(153, 61.2, 0);
  --bs-alert-bg: rgb(255, 236.64, 224.4);
  --bs-alert-border-color: rgb(255, 212.16, 183.6);
}

.alert-warning {
  --bs-alert-color: rgb(61.2, 48.96, 0);
  --bs-alert-bg: rgb(255, 245.82, 209.1);
  --bs-alert-border-color: rgb(255, 236.64, 163.2);
}

/* =========================
   Badges
   ========================= */
.badge.text-bg-primary {
  background-color: #0066b3 !important;
  color: #fff !important;
}

.badge.text-bg-secondary {
  background-color: #4d4d4d !important;
  color: #fff !important;
}

.badge.text-bg-info {
  background-color: #ff6600 !important;
  color: #fff !important;
}

.badge.text-bg-warning {
  background-color: #ffcc00 !important;
  color: #000 !important;
}

/* =========================
   Cards / Modals / Tables
   ========================= */
.card,
.modal-content {
  border-color: var(--bs-border-color);
}

.card-header,
.card-footer {
  background-color: #f5f6f7;
}

.table {
  --bs-table-hover-bg: rgba(0, 102, 179, 0.035);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.018);
}

/* =========================
   Progress / Spinner
   ========================= */
.progress {
  --bs-progress-bar-bg: #0066b3;
}

.spinner-border.text-primary,
.spinner-grow.text-primary {
  color: #0066b3 !important;
}

.spinner-border.text-info,
.spinner-grow.text-info {
  color: #ff6600 !important;
}

/* =========================
   Fokus / aktive Zustände allgemein
   ========================= */
.btn:focus,
.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.page-link:focus,
.dropdown-item:focus {
  outline: none;
}

/* =========================
   Dark Theme
   ========================= */
[data-bs-theme=dark] {
  --bs-body-bg: #0b0f14;
  --bs-body-bg-rgb: 11, 15, 20;
  --bs-body-color: #e8edf2;
  --bs-body-color-rgb: 232, 237, 242;
  --bs-border-color: rgba(255, 255, 255, 0.14);
  --bs-border-color-translucent: rgba(255, 255, 255, 0.12);
  --bs-secondary-bg: #111823;
  --bs-tertiary-bg: #0f1620;
  --bs-card-bg: #111823;
  --bs-card-cap-bg: #0f1620;
  --bs-dropdown-bg: #111823;
  --bs-modal-content-bg: #111823;
  --bs-link-color: rgb(89.25, 155.55, 205.6);
  --bs-link-hover-color: rgb(56.1, 135.66, 195.72);
  --bs-focus-ring-color: rgba(89.25, 155.55, 205.6, 0.35);
}
[data-bs-theme=dark] .btn-primary {
  --bs-btn-bg: rgb(30.6, 120.36, 188.12);
  --bs-btn-border-color: rgb(30.6, 120.36, 188.12);
  --bs-btn-hover-bg: rgb(56.1, 135.66, 195.72);
  --bs-btn-hover-border-color: rgb(56.1, 135.66, 195.72);
  --bs-btn-active-bg: rgb(76.5, 147.9, 201.8);
  --bs-btn-active-border-color: rgb(76.5, 147.9, 201.8);
  --bs-btn-color: #081018;
}
[data-bs-theme=dark] .btn-info {
  --bs-btn-bg: rgb(255, 120.36, 30.6);
  --bs-btn-border-color: rgb(255, 120.36, 30.6);
  --bs-btn-hover-bg: rgb(255, 135.66, 56.1);
  --bs-btn-hover-border-color: rgb(255, 135.66, 56.1);
  --bs-btn-active-bg: rgb(255, 147.9, 76.5);
  --bs-btn-active-border-color: rgb(255, 147.9, 76.5);
  --bs-btn-color: #1a1208;
}
[data-bs-theme=dark] .btn-warning {
  --bs-btn-color: #000;
}
[data-bs-theme=dark] .form-control,
[data-bs-theme=dark] .form-select {
  background-color: #0f1620;
  border-color: rgba(255, 255, 255, 0.12);
  color: #e8edf2;
}
[data-bs-theme=dark] .dropdown-item {
  color: #e8edf2;
}
[data-bs-theme=dark] .dropdown-item:hover, [data-bs-theme=dark] .dropdown-item:focus {
  background-color: #182231;
  color: #ffffff;
}
[data-bs-theme=dark] .table {
  --bs-table-hover-bg: rgba(255, 255, 255, 0.04);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.025);
}

/* =========================
   Optional: Backdrop Blur
   ========================= */
.modal-backdrop,
.modal {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.login-page {
  min-height: 100vh;
  background-color: #f8f9fa;
}
.login-page .container-fluid,
.login-page .row {
  min-height: 100vh;
}

.login-hero {
  background: linear-gradient(135deg, #dc2f02 0%, #f48c06 100%);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.login-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: pulse 15s ease-in-out infinite;
}
.login-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}
.login-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 400px;
}
.login-hero__logo {
  margin-bottom: 1.5rem;
}
.login-hero__icon {
  width: 80px;
  height: 80px;
  color: #ffba08;
  filter: drop-shadow(0 4px 20px rgba(255, 186, 8, 0.4));
  animation: glow 3s ease-in-out infinite;
}
.login-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.login-hero__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  font-weight: 300;
}
.login-hero__features {
  text-align: left;
}
.login-hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.login-hero__feature:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.15);
}
.login-hero__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.login-hero__feature-icon svg {
  width: 20px;
  height: 20px;
}
.login-hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.login-hero__feature-text strong {
  font-size: 0.95rem;
}
.login-hero__feature-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}
.login-hero__footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
.login-hero__footer p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

.login-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #fff;
}

.login-form-container {
  width: 100%;
  max-width: 440px;
}

.login-mobile-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #dc2f02 0%, #f48c06 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.3);
}
.login-mobile-logo svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.login-mobile-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #370617;
}

.login-form-header {
  margin-bottom: 2rem;
}

.login-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.login-form-subtitle {
  color: #6c757d;
  margin: 0;
}

.login-form .form-label {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.875rem;
  display: inline-flex;
  gap: 0.3255rem;
}
.login-form .input-group-text {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  border-right: none;
}
.login-form .input-group-text svg {
  width: 18px;
  height: 18px;
  color: #6c757d;
}
.login-form .form-control {
  border-left: none;
  border-color: #dee2e6;
  font-size: 1rem;
}
.login-form .form-control:focus {
  box-shadow: none;
  border-color: #e85d04;
}
.login-form .form-control:focus ~ .input-group-text,
.login-form .form-control:focus + .input-group-text {
  border-color: #e85d04;
}
.login-form .form-control::placeholder {
  color: #adb5bd;
}
.login-form .input-group:focus-within .input-group-text {
  border-color: #e85d04;
}
.login-form .input-group:focus-within .input-group-text svg {
  color: #e85d04;
}
.login-form .input-group:focus-within .form-control {
  border-color: #e85d04;
}
.login-form .form-check-input {
  width: 1.15em;
  height: 1.15em;
  border-color: #ced4da;
  cursor: pointer;
}
.login-form .form-check-input:checked {
  background-color: #e85d04;
  border-color: #e85d04;
}
.login-form .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 93, 4, 0.25);
}
.login-form .form-check-label {
  cursor: pointer;
  color: #495057;
}

.alert {
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
}
.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.alert-info {
  background-color: rgba(232, 93, 4, 0.1);
  color: #d45200;
}

.alert-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.login-forgot-link {
  font-size: 0.875rem;
  color: #e85d04;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.login-forgot-link:hover {
  color: #d45200;
  text-decoration: underline;
}

.btn-login {
  background: linear-gradient(135deg, #dc2f02 0%, #e85d04 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
}
.btn-login svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.btn-login:hover {
  background: linear-gradient(135deg, #d45200 0%, #dc2f02 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
  transform: translateY(-2px);
}
.btn-login:hover svg {
  transform: translateX(4px);
}
.btn-login:active {
  transform: translateY(0);
}
.btn-login:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 93, 4, 0.5);
}

.login-form-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
  text-align: center;
}
.login-form-footer p {
  font-size: 0.85rem;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5%, -5%);
  }
}
@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 4px 20px rgba(255, 186, 8, 0.4));
  }
  50% {
    filter: drop-shadow(0 4px 30px rgba(255, 186, 8, 0.7));
  }
}
@media (max-width: 991.98px) {
  .login-form-wrapper {
    min-height: 100vh;
    padding: 3rem 1.5rem;
  }
  .login-form-header {
    text-align: center;
  }
  .login-form-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .login-form-wrapper {
    padding: 2rem 1rem;
  }
  .login-form-container {
    max-width: 100%;
  }
}
.loader {
  width: 65px;
  aspect-ratio: 1;
  position: relative;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50px;
  box-shadow: 0 0 0 3px inset #fff;
  animation: l4 2.5s infinite;
}

.loader:after {
  animation-delay: -1.25s;
}

@keyframes l4 {
  0% {
    inset: 0 35px 35px 0;
  }
  12.5% {
    inset: 0 35px 0 0;
  }
  25% {
    inset: 35px 35px 0 0;
  }
  37.5% {
    inset: 35px 0 0 0;
  }
  50% {
    inset: 35px 0 0 35px;
  }
  62.5% {
    inset: 0 0 0 35px;
  }
  75% {
    inset: 0 0 35px 35px;
  }
  87.5% {
    inset: 0 0 35px 0;
  }
  100% {
    inset: 0 35px 35px 0;
  }
}
.funnel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
  position: relative;
}
.funnel--loading .funnel__content {
  opacity: 0.6;
  pointer-events: none;
}
.funnel--error .funnel__content {
  opacity: 1;
}

.funnel__header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1rem;
}
@media (min-width: 768px) {
  .funnel__header {
    padding: 1rem 2rem;
  }
}

.funnel__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.funnel__logo img,
.funnel__logo svg {
  height: 32px;
  width: auto;
  max-width: 150px;
}
@media (min-width: 768px) {
  .funnel__logo img,
  .funnel__logo svg {
    height: 40px;
    max-width: 200px;
  }
}

.funnel__logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
}
@media (min-width: 768px) {
  .funnel__logo-text {
    font-size: 1.25rem;
  }
}

.funnel__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .funnel__progress {
    gap: 0.5rem;
    padding: 1rem 2rem;
  }
}

.funnel-progress__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .funnel-progress__step {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.funnel-progress__step--active {
  background: #0066b3;
  color: #ffffff;
  font-weight: 600;
}
.funnel-progress__step--completed {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  cursor: pointer;
}

.funnel-progress__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  font-size: 0.625rem;
  font-weight: 700;
}
.funnel-progress__step--active .funnel-progress__step-number {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
.funnel-progress__step--completed .funnel-progress__step-number {
  background: #28a745;
  color: #ffffff;
}

.funnel-progress__connector {
  width: 20px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .funnel-progress__connector {
    width: 40px;
  }
}

.funnel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
@media (min-width: 768px) {
  .funnel__content {
    padding: 2rem;
  }
}

.funnel-step {
  display: none;
  flex: 1;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}
.funnel-step--active {
  display: flex;
}

.funnel-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .funnel-step__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.funnel-step__description {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .funnel-step__description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.funnel-step__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sidebar-steps .list-group-item.active .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.funnel__footer {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem;
}
@media (min-width: 768px) {
  .funnel__footer {
    padding: 1.5rem 2rem;
  }
}

.funnel__navigation {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .funnel__navigation {
    gap: 1rem;
  }
}

.funnel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-width: 100px;
}
@media (min-width: 768px) {
  .funnel__button {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 140px;
  }
}
.funnel__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.funnel__button--primary {
  background: #0066b3;
  color: #ffffff;
}
.funnel__button--primary:hover:not(:disabled) {
  background: #00589a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 179, 0.3);
}
.funnel__button--primary:active:not(:disabled) {
  transform: translateY(0);
}

.funnel__button--secondary {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}
.funnel__button--secondary:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.1);
}

.funnel__button--success {
  background: #28a745;
  color: #ffffff;
}
.funnel__button--success:hover:not(:disabled) {
  background: rgb(30.1449275362, 125.8550724638, 52);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.funnel__button--success:active:not(:disabled) {
  transform: translateY(0);
}

.funnel__loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.funnel__loading:not(.d-none) {
  opacity: 1;
  visibility: visible;
}

.funnel__loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 102, 179, 0.2);
  border-top-color: #0066b3;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@media (min-width: 768px) {
  .funnel__loading-spinner {
    width: 48px;
    height: 48px;
    border-width: 4px;
  }
}

.funnel__loading-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .funnel__loading-text {
    font-size: 1rem;
  }
}

.funnel__service-unavailable {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  max-width: 90%;
  width: 500px;
  z-index: 1001;
  text-align: center;
  transition: all 0.3s ease;
}
.funnel__service-unavailable:not(.d-none) {
  opacity: 1;
  visibility: visible;
}

.funnel__fact-container {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.funnel__fact-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0066b3;
}

.funnel__fact-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a2e;
}

.funnel__error {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  max-width: 90%;
  width: 400px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.funnel__error:not(.d-none) {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .funnel__error {
    padding: 2rem;
  }
}

.funnel__error-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 50%;
  color: #dc3545;
}

.funnel__error-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.5rem;
}

.funnel__error-message {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-bottom: 1.5rem;
}

.funnel__error-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.n8n-dropzone {
  border: 2px dashed var(--bs-border-color);
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.n8n-dropzone:hover, .n8n-dropzone--active {
  border-color: #0066b3;
  background: var(--bs-tertiary-bg);
}

.n8n-status {
  padding: 1rem;
  border-radius: var(--bs-border-radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.n8n-status--loading {
  background: rgba(0, 102, 179, 0.1);
  color: #0066b3;
  border: 1px solid rgba(0, 102, 179, 0.2);
}
.n8n-status--loading::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: text-bottom;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  flex-shrink: 0;
}
.n8n-status--success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}
.n8n-status--error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.analysis-toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--bs-border-color);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.analysis-toggle-container:hover {
  border-color: #0066b3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.analysis-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.analysis-toggle-title {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a2e;
}

.analysis-toggle-subtitle {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}

.form-switch {
  padding-left: 3.5em;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.form-switch .form-check-input {
  width: 3em;
  height: 1.5em;
  cursor: pointer;
  margin-left: -3.5em;
}
.form-switch .form-check-input:checked {
  background-color: #0066b3;
  border-color: #0066b3;
}

.n8n-preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

.n8n-preview-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.n8n-preview-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-light);
}

.n8n-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n8n-preview-remove {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.7);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}
.n8n-preview-remove:hover {
  background: #dc3545;
  transform: scale(1.1);
}

.n8n-preview-name {
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.form-label {
  font-size: 1.00124em;
  font-weight: 600;
}

/* funnel-entry.vr-theme.scss
   Ziel:
   - VR-Theme über CSS Custom Properties bereitstellen (:root oder Scope)
   - In der Komponente ausschließlich var(...) nutzen (keine festen Hexwerte)
   - SCSS bleibt nur für Struktur/Media Queries/Nesting + helpers

   Nutzung:
   - Standard: :root definiert VR-Theme global
   - Alternativ: VR-Theme nur in einem Bereich aktivieren:
     .theme-vr { ...variablen... } und den Wrapper setzen
*/
/* =========================
   Helper: Hex -> "r, g, b" String (für rgba über CSS vars)
   ========================= */
/* =========================
   VR Theme Tokens (CSS vars)
   ========================= */
/* Optional: statt :root kannst du hier .theme-vr nehmen */
:root {
  /* Brand - VR Blau als Hauptfarbe */
  --vr-primary: #0066b3;
  --vr-primary-dark: #00589a;
  --vr-primary-light: #2a7fc2;
  --vr-accent: #ff6600; /* Orange als Akzentfarbe */
  --vr-accent-light: #ff8533; /* Orange hell */
  --vr-accent-dark: #e65c00; /* Orange dunkel */
  /* Text / neutrals */
  --vr-dark: #1a1a2e;
  --vr-light: #f8f9fa;
  --vr-white: #ffffff;
  --vr-gray-100: #f5f5f7;
  --vr-gray-200: #e8e8ed;
  --vr-gray-300: #d2d2d7;
  --vr-gray-500: #86868b;
  --vr-gray-700: #515154;
  /* States */
  --vr-error: #ff3b30;
  --vr-success: #34c759;
  /* Elevation / radius / motion */
  --vr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --vr-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --vr-radius: 16px;
  --vr-radius-sm: 8px;
  --vr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* RGB companions (für rgba()) */
  --vr-primary-rgb: 0, 102, 179;
  --vr-accent-rgb: 255, 102, 0;
  --vr-error-rgb: 255, 59, 48;
  --vr-success-rgb: 52, 199, 89;
  --vr-white-rgb: 255, 255, 255;
  --vr-dark-rgb: 26, 26, 46;
  /* Komponentenspezifische Tokens (damit du die Optik ohne Refactor ändern kannst) */
  --funnel-primary: var(--vr-primary);
  --funnel-primary-dark: var(--vr-primary-dark);
  --funnel-primary-light: var(--vr-primary-light);
  --funnel-accent: var(--vr-accent);
  --funnel-dark: var(--vr-dark);
  --funnel-light: var(--vr-light);
  --funnel-white: var(--vr-white);
  --funnel-gray-100: var(--vr-gray-100);
  --funnel-gray-200: var(--vr-gray-200);
  --funnel-gray-300: var(--vr-gray-300);
  --funnel-gray-500: var(--vr-gray-500);
  --funnel-gray-700: var(--vr-gray-700);
  --funnel-error: var(--vr-error);
  --funnel-success: var(--vr-success);
  --funnel-shadow: var(--vr-shadow);
  --funnel-shadow-lg: var(--vr-shadow-lg);
  --funnel-radius: var(--vr-radius);
  --funnel-radius-sm: var(--vr-radius-sm);
  --funnel-transition: var(--vr-transition);
  /* Gradient-Stopps als Tokens - VR Blau basiert */
  --funnel-bg-0: #0a1628;
  --funnel-bg-1: #0f2847;
  --funnel-bg-2: #0066b3;
}

/* =========================
   Component (uses var())
   ========================= */
.funnel-entry {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--funnel-bg-0) 0%, var(--funnel-bg-1) 50%, var(--funnel-bg-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.funnel-entry::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(var(--vr-primary-rgb), 0.1) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}
.funnel-entry__container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.funnel-entry__header {
  text-align: center;
  margin-bottom: 2rem;
}
.funnel-entry__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(var(--vr-white-rgb), 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(var(--vr-white-rgb), 0.2);
}
.funnel-entry__logo-icon {
  width: 28px;
  height: 28px;
  color: var(--vr-accent-2);
}
.funnel-entry__logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--funnel-white);
  letter-spacing: 0.5px;
}
.funnel-entry__content {
  background: var(--funnel-white);
  border-radius: var(--funnel-radius);
  box-shadow: var(--funnel-shadow-lg);
  overflow: hidden;
}
.funnel-entry__welcome-section {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(var(--vr-primary-rgb), 0.05) 0%, transparent 100%);
}
.funnel-entry__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--funnel-dark);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.funnel-entry__subtitle {
  font-size: 0.9375rem;
  color: var(--funnel-gray-500);
  margin: 0;
}
.funnel-entry__property-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--funnel-gray-100);
  border-radius: var(--funnel-radius-sm);
  border: 1px solid var(--funnel-gray-200);
}
.funnel-entry__property-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--funnel-white);
  border-radius: 10px;
  box-shadow: var(--funnel-shadow);
}
.funnel-entry__property-icon svg {
  width: 22px;
  height: 22px;
  color: var(--vr-accent-2);
}
.funnel-entry__property-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.funnel-entry__property-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--funnel-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.funnel-entry__property-address {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--funnel-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.funnel-entry__form {
  padding: 1.5rem;
}
.funnel-entry__form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.funnel-entry__form-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--funnel-dark);
  margin: 0 0 0.5rem;
}
.funnel-entry__form-description {
  font-size: 0.875rem;
  color: var(--funnel-gray-500);
  margin: 0;
  line-height: 1.5;
}
.funnel-entry__input-group {
  margin-bottom: 1.5rem;
}
.funnel-entry__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--funnel-gray-700);
  margin-bottom: 0.5rem;
}
.funnel-entry__input-wrapper {
  position: relative;
}
.funnel-entry__input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-align: center;
  border: 2px solid var(--funnel-gray-200);
  border-radius: var(--funnel-radius-sm);
  background: var(--funnel-white);
  color: var(--funnel-dark);
  transition: var(--funnel-transition);
}
.funnel-entry__input::placeholder {
  color: var(--funnel-gray-300);
  letter-spacing: 0.3em;
}
.funnel-entry__input:focus {
  outline: none;
  border-color: var(--funnel-primary);
  box-shadow: 0 0 0 4px rgba(var(--vr-primary-rgb), 0.15);
}
.funnel-entry__input-decoration {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--funnel-gray-300);
  pointer-events: none;
  transition: var(--funnel-transition);
}
.funnel-entry__input-decoration svg {
  width: 100%;
  height: 100%;
}
.funnel-entry__input:focus + .funnel-entry__input-decoration {
  color: var(--funnel-primary);
}
.funnel-entry__hint {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--funnel-gray-500);
  text-align: center;
}
.funnel-entry__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--funnel-white);
  background: linear-gradient(135deg, var(--funnel-primary) 0%, var(--funnel-primary-dark) 100%);
  border: none;
  border-radius: var(--funnel-radius-sm);
  cursor: pointer;
  transition: var(--funnel-transition);
  position: relative;
  overflow: hidden;
}
.funnel-entry__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--funnel-primary-light) 0%, var(--funnel-primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.funnel-entry__button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--vr-primary-rgb), 0.4);
}
.funnel-entry__button:hover:not(:disabled)::before {
  opacity: 1;
}
.funnel-entry__button:active:not(:disabled) {
  transform: translateY(0);
}
.funnel-entry__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.funnel-entry__button-text {
  position: relative;
  z-index: 1;
}
.funnel-entry__button-icon {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.funnel-entry__button:hover .funnel-entry__button-icon {
  transform: translateX(4px);
}
.funnel-entry__error {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(var(--vr-error-rgb), 0.1);
  border: 1px solid rgba(var(--vr-error-rgb), 0.2);
  border-radius: var(--funnel-radius-sm);
  animation: slideIn 0.3s ease;
}
.funnel-entry__error.d-none {
  display: none;
}
.funnel-entry__error-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--funnel-error);
}
.funnel-entry__error-text {
  font-size: 0.875rem;
  color: var(--funnel-error);
  line-height: 1.5;
}
.funnel-entry__footer {
  padding: 1.5rem;
  text-align: center;
}
.funnel-entry__footer-text {
  font-size: 0.8125rem;
  color: var(--funnel-gray-500);
  margin: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .funnel-entry {
    padding: 0;
  }
  .funnel-entry__container {
    max-width: 100%;
  }
  .funnel-entry__content {
    border-radius: 0;
  }
  .funnel-entry__welcome-section {
    padding: 1.5rem 1.5rem 1rem;
  }
  .funnel-entry__title {
    font-size: 1.25rem;
  }
  .funnel-entry__property-card {
    margin: 0 1rem;
  }
  .funnel-entry__form {
    padding: 1rem;
  }
  .funnel-entry__footer {
    padding: 1rem;
  }
}
:root {
  --vr-blue: #0066b3;
  --vr-orange: #ff6600;
  --vr-light-bg: #f8fafc;
  --vr-card-bg: rgba(255, 255, 255, 0.98);
  --vr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  --vr-border-radius: 2rem;
  --vr-input-radius: 1rem;
}

.funnel__content {
  background-color: #f1f5f9;
  background-image: radial-gradient(at 0% 0%, rgba(0, 102, 179, 0.05) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(255, 102, 0, 0.05) 0px, transparent 50%);
  min-height: calc(100dvh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-card {
  background: var(--vr-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--vr-border-radius);
  box-shadow: var(--vr-shadow);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-header {
  background: linear-gradient(135deg, var(--vr-blue) 0%, #004d8c 100%);
  color: white;
  padding: 3.5rem 2.5rem 4rem;
  text-align: center;
  position: relative;
}
.landing-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--vr-card-bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.landing-header h2 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.landing-header p {
  opacity: 0.85;
  font-size: 1.125rem;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
}

.landing-body {
  padding: 3rem 3rem 4rem;
}

.form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  gap: 0.3255rem;
}

.form-control, .form-select {
  border-radius: var(--vr-input-radius);
  padding: 0.9rem 1.25rem;
  border: 2px solid #f1f5f9;
  background-color: #f8fafc;
  font-size: 1.05rem;
  color: #1e293b;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-control::placeholder, .form-select::placeholder {
  color: #94a3b8;
}
.form-control:focus, .form-select:focus {
  background-color: white;
  border-color: var(--vr-blue);
  box-shadow: 0 0 0 5px rgba(0, 102, 179, 0.1);
  transform: scale(1.01);
}

.payment-section {
  background: #ffffff;
  border-radius: var(--vr-input-radius);
  padding: 1.75rem;
  border: 2px solid #f1f5f9;
  margin-bottom: 2rem;
  transition: border-color 0.3s ease;
}
.payment-section:focus-within {
  border-color: rgba(0, 102, 179, 0.2);
}

.submit-btn {
  background: var(--vr-orange);
  border: none;
  border-radius: var(--vr-input-radius);
  padding: 1.25rem;
  font-weight: 800;
  font-size: 1.125rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 10px 25px -5px rgba(255, 102, 0, 0.4);
  margin-top: 1rem;
}
.submit-btn:hover:not(:disabled) {
  background: #e65c00;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(255, 102, 0, 0.5);
}
.submit-btn:active:not(:disabled) {
  transform: translateY(0) scale(1);
}
.submit-btn:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.funnel-progress {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.funnel-progress__step--active .funnel-progress__step-number {
  background: linear-gradient(135deg, var(--vr-blue) 0%, #004d8c 100%);
  color: white;
  border: none;
  box-shadow: 0 0 0 6px rgba(0, 102, 179, 0.1);
}
.funnel-progress__step-number {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  border: 2px solid #f1f5f9;
  background: white;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.success-icon-container {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  box-shadow: 0 15px 30px -10px rgba(34, 197, 94, 0.5);
}

.loading-spinner-container {
  padding: 6rem 3rem;
}

.funnel__loading-spinner {
  border: 4px solid #f1f5f9;
  border-top: 4px solid var(--vr-blue);
  width: 80px;
  height: 80px;
}

.legal-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border: 2px solid #f1f5f9;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.legal-checkbox-row:hover {
  border-color: rgba(0, 102, 179, 0.3);
  background: #ffffff;
}
.legal-checkbox-row input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  cursor: pointer;
  accent-color: var(--vr-blue);
  flex-shrink: 0;
}
.legal-checkbox-row input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.15);
}

.legal-checkbox-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.legal-checkbox-label {
  font-size: 0.9rem;
  color: #1e293b;
  line-height: 1.4;
}

.legal-link {
  color: var(--vr-blue);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.legal-link:hover {
  color: #004d8c;
  text-decoration: underline;
}
.legal-link::after {
  content: "↗";
  font-size: 0.75rem;
  opacity: 0.7;
}
.legal-link:focus {
  outline: 2px solid var(--vr-blue);
  outline-offset: 2px;
}

.modal-legal-text {
  font-size: 0.85rem;
  line-height: 1.6;
  max-height: 400px;
  overflow-y: auto;
}

@media (max-width: 640px) {
  .funnel__content {
    padding: 1rem;
  }
  .landing-card {
    border-radius: 1.5rem;
  }
  .landing-header {
    padding: 3rem 1.5rem 3.5rem;
  }
  .landing-header h2 {
    font-size: 2rem;
  }
  .landing-body {
    padding: 2.5rem 1.5rem;
  }
  .form-control {
    padding: 0.85rem 1rem;
  }
}
.help-icon {
  cursor: pointer;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.help-icon:hover {
  color: var(--vr-blue) !important;
}
.help-icon i {
  font-size: 0.875rem;
}

.admin-debug-panel {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-radius: 8px;
  z-index: 9999;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 300px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.admin-debug-panel.is-collapsed {
  max-width: 48px;
}
.admin-debug-panel.is-collapsed .admin-debug-panel__content {
  display: none;
}
.admin-debug-panel.is-collapsed .admin-debug-panel__title,
.admin-debug-panel.is-collapsed .admin-debug-panel__chevron {
  display: none;
}
.admin-debug-panel.is-collapsed .admin-debug-panel__header {
  padding: 12px;
  justify-content: center;
}

.admin-debug-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}
.admin-debug-panel__header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.admin-debug-panel__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-debug-panel__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 5px;
}

.admin-debug-panel__title {
  font-weight: 600;
  font-size: 13px;
}

.admin-debug-panel__chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.admin-debug-panel__content {
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-debug-panel__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-debug-panel__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.admin-debug-panel__toggle {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.admin-debug-panel__toggle.is-enabled {
  background: #22c55e;
  color: #fff;
}
.admin-debug-panel__toggle.is-disabled {
  background: #ef4444;
  color: #fff;
}
.admin-debug-panel__toggle:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.admin-debug-panel__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-debug-panel__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s ease;
}
.admin-debug-panel__link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.admin-debug-panel__link-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.admin-debug-panel__info {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  word-break: break-all;
}

.timeframe-coverage-wrapper {
  background: var(--bs-light, #f8f9fa);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--bs-border-color, #dee2e6);
}

.timeframe-bar-container {
  position: relative;
}

.timeframe-bar {
  position: relative;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.06) 100%);
  border-radius: 0.375rem;
  overflow: visible;
  border: 1px solid var(--bs-border-color, #dee2e6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.timeframe-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.timeframe-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--bs-border-color, #dee2e6);
}
.timeframe-grid-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  background: var(--bs-secondary, #6c757d);
  border-radius: 50%;
}

.timeframe-segments {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.timeframe-segment {
  position: absolute;
  top: 4px;
  bottom: 4px;
  min-width: 4px;
  border-radius: 0.25rem;
  background: linear-gradient(135deg, var(--bs-success, #198754) 0%, rgb(18.625, 100.575, 62.58) 100%);
  box-shadow: 0 2px 4px rgba(25, 135, 84, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.timeframe-segment:hover {
  transform: scaleY(1.1);
  box-shadow: 0 4px 8px rgba(25, 135, 84, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.timeframe-segment::after {
  content: attr(data-index);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.timeframe-segment:hover::after {
  opacity: 1;
}
.timeframe-segment.has-overlap {
  background: linear-gradient(135deg, var(--bs-warning, #ffc107) 0%, rgb(211, 158.25, 0) 100%);
  box-shadow: 0 2px 4px rgba(255, 193, 7, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.timeframe-segment.has-overlap::before {
  content: "\f071";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: rgb(109, 81.75, 0);
}

.timeframe-gaps {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.timeframe-gap {
  position: absolute;
  top: 4px;
  bottom: 4px;
  min-width: 2px;
  background: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(220, 53, 69, 0.15) 3px, rgba(220, 53, 69, 0.15) 6px);
  border-radius: 0.25rem;
  border: 1px dashed rgba(220, 53, 69, 0.4);
  animation: gapPulse 2s ease-in-out infinite;
}

@keyframes gapPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.timeframe-month-ticks {
  position: relative;
  height: 6px;
  margin-top: 2px;
}

.timeframe-tick {
  position: absolute;
  top: 0;
  width: 1px;
  height: 4px;
  background: var(--bs-secondary, #6c757d);
  opacity: 0.4;
}

.timeframe-year-markers {
  padding: 0 2px;
}
.timeframe-year-markers span {
  font-weight: 500;
  color: var(--bs-secondary, #6c757d);
}

.timeframe-legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.timeframe-legend-filled {
  background: linear-gradient(135deg, var(--bs-success, #198754) 0%, rgb(18.625, 100.575, 62.58) 100%);
  box-shadow: 0 1px 3px rgba(25, 135, 84, 0.3);
}

.timeframe-legend-gap {
  background: repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(220, 53, 69, 0.3) 2px, rgba(220, 53, 69, 0.3) 4px);
  border: 1px dashed rgba(220, 53, 69, 0.5);
}

.timeframe-legend-overlap {
  background: linear-gradient(135deg, var(--bs-warning, #ffc107) 0%, rgb(211, 158.25, 0) 100%);
  box-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

.timeframe-status .alert {
  border-radius: 0.375rem;
}
.timeframe-status .alert.alert-success {
  background: rgba(25, 135, 84, 0.1);
  border-color: rgba(25, 135, 84, 0.2);
  color: rgb(17.03125, 91.96875, 57.225);
}
.timeframe-status .alert.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
  color: rgb(83.5, 62.625, 0);
}
.timeframe-status .alert.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.timeframe-tooltip {
  position: absolute;
  background: var(--bs-dark, #212529);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}
.timeframe-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--bs-dark, #212529) transparent transparent;
}

.timeframe-year-marker {
  position: absolute;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--bs-secondary, #6c757d);
  white-space: nowrap;
}
.timeframe-year-marker::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 6px;
  background: var(--bs-secondary, #6c757d);
}

.timeframe-period-list {
  max-height: 150px;
  overflow-y: auto;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0.25rem;
  border: 1px solid var(--bs-border-color, #dee2e6);
}
.timeframe-period-list ul {
  margin: 0;
  padding: 0;
}
.timeframe-period-list li {
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.timeframe-period-list li:last-child {
  border-bottom: none;
}
.timeframe-period-list li i {
  color: var(--bs-primary, #0d6efd);
}
.timeframe-period-list li .badge {
  font-size: 0.65rem;
}

.timeframe-segment.outside-window {
  opacity: 0.5;
  background: linear-gradient(135deg, var(--bs-secondary, #6c757d) 0%, rgb(84.3605150215, 91.3905579399, 97.6394849785) 100%);
  box-shadow: none;
  cursor: default;
}
.timeframe-segment.outside-window:hover {
  transform: none;
}

.timeframe-anchor-date {
  font-size: 0.75rem;
  color: var(--bs-secondary, #6c757d);
}
.timeframe-anchor-date strong {
  color: var(--bs-body-color, #212529);
}

.timeframe-coverage-wrapper .alert-danger a {
  color: inherit;
  text-decoration: underline;
}
.timeframe-coverage-wrapper .alert-danger a:hover {
  text-decoration: none;
}

@media (max-width: 576px) {
  .timeframe-coverage-wrapper {
    padding: 0.75rem 1rem;
  }
  .timeframe-bar {
    height: 2rem;
  }
  .timeframe-summary .row {
    flex-direction: column;
  }
  .timeframe-summary .row .col-auto {
    width: 100%;
  }
  .timeframe-year-marker {
    font-size: 0.6rem;
  }
  .timeframe-period-list {
    max-height: 120px;
  }
}

/*# sourceMappingURL=app.css-SloSI3e.map */
