/* Cookie Consent 1.0.0 — dependency-free, Bootstrap-safe styles */
.cc-root {
  --cc-primary: #1f2937;
  --cc-primary-text: #ffffff;
  --cc-background: #ffffff;
  --cc-text: #111827;
  --cc-muted: #4b5563;
  --cc-border: #d1d5db;
  --cc-radius: 14px;
  --cc-shadow: 0 20px 60px rgb(0 0 0 / 20%);
  color: var(--cc-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.cc-root,
.cc-root *,
.cc-root *::before,
.cc-root *::after,
.cc-iframe-placeholder,
.cc-iframe-placeholder *,
.cc-iframe-placeholder *::before,
.cc-iframe-placeholder *::after {
  box-sizing: border-box;
}

.cc-root [hidden],
.cc-modal-layer[hidden],
.cc-banner[hidden],
.cc-iframe-placeholder[hidden],
iframe.cc-iframe--blocked[hidden] {
  display: none !important;
}

.cc-banner {
  position: fixed;
  z-index: 2147483000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  background: rgb(17 24 39 / 42%);
  backdrop-filter: blur(3px);
}

.cc-banner__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(210px, auto);
  gap: 18px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-background);
  box-shadow: var(--cc-shadow);
}

.cc-banner__brand,
.cc-modal__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.cc-logo {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.cc-banner__content {
  min-width: 0;
}

.cc-banner__title,
.cc-modal__title,
.cc-category__title {
  margin: 0;
  color: var(--cc-text);
  font: inherit;
  font-weight: 700;
}

.cc-banner__title {
  margin-bottom: 6px;
  font-size: 1.125rem;
  line-height: 1.3;
}

.cc-banner__description,
.cc-modal__description,
.cc-category__description,
.cc-iframe-placeholder__description {
  margin: 0;
  color: var(--cc-muted);
}

.cc-banner__description {
  max-width: 72ch;
  font-size: 0.9375rem;
}

.cc-banner__links,
.cc-modal__links {
  margin-top: 8px;
  font-size: 0.875rem;
}

.cc-root a {
  color: var(--cc-primary);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cc-root a:hover {
  text-decoration-thickness: 2px;
}

.cc-banner__actions,
.cc-modal__footer {
  display: grid;
  gap: 10px;
}

.cc-banner__actions {
  grid-template-columns: 1fr;
  min-width: 210px;
}

.cc-button,
.cc-icon-button {
  appearance: none;
  border: 2px solid var(--cc-primary, #1f2937);
  border-radius: max(8px, calc(var(--cc-radius, 14px) - 4px));
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.cc-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  text-align: center;
}

.cc-button--decision {
  background: var(--cc-primary, #1f2937);
  color: var(--cc-primary-text, #ffffff);
}

.cc-button--secondary {
  background: var(--cc-background, #ffffff);
  color: var(--cc-primary, #1f2937);
}

.cc-button:hover,
.cc-icon-button:hover {
  box-shadow: 0 4px 14px rgb(0 0 0 / 18%);
  transform: translateY(-1px);
}

.cc-button:active,
.cc-icon-button:active {
  box-shadow: none;
  transform: translateY(0);
}

.cc-button:focus-visible,
.cc-icon-button:focus-visible,
.cc-switch input:focus-visible + .cc-switch__visual,
.cc-root a:focus-visible,
.cc-iframe-placeholder a:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

.cc-modal-layer {
  position: fixed;
  z-index: 2147483001;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(3 7 18 / 68%);
  backdrop-filter: blur(3px);
}

.cc-modal {
  position: relative;
  display: flex;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  background: var(--cc-background);
  box-shadow: var(--cc-shadow);
}

.cc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--cc-border);
}

.cc-modal__heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.cc-modal__title {
  font-size: 1.35rem;
  line-height: 1.25;
}

.cc-icon-button {
  display: inline-grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: var(--cc-background);
  color: var(--cc-text);
  font-size: 1.8rem;
  font-weight: 400;
}

.cc-modal__body {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 20px 22px 22px;
}

.cc-modal__description {
  font-size: 0.9375rem;
}

.cc-categories {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.cc-category {
  padding: 16px;
  border: 1px solid var(--cc-border);
  border-radius: max(8px, calc(var(--cc-radius) - 4px));
  background: var(--cc-background);
}

.cc-category__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.cc-category__title {
  display: inline;
  font-size: 1rem;
}

.cc-category__status {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  color: var(--cc-muted);
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: 2px;
}

.cc-category__description {
  margin-top: 6px;
  font-size: 0.875rem;
}

.cc-category__details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--cc-border);
  color: var(--cc-muted);
  font-size: 0.875rem;
}

.cc-category__details summary {
  color: var(--cc-text);
  font-weight: 700;
  cursor: pointer;
}

.cc-service-list {
  margin: 8px 0 0;
  padding-left: 20px;
}

.cc-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  cursor: pointer;
}

.cc-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.cc-switch__visual {
  position: relative;
  display: block;
  width: 52px;
  height: 30px;
  border: 2px solid var(--cc-muted);
  border-radius: 999px;
  background: var(--cc-background);
  transition: background-color 150ms ease, border-color 150ms ease;
}

.cc-switch__visual::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cc-muted);
  content: "";
  transition: transform 150ms ease, background-color 150ms ease;
}

.cc-switch input:checked + .cc-switch__visual {
  border-color: var(--cc-primary);
  background: var(--cc-primary);
}

.cc-switch input:checked + .cc-switch__visual::after {
  background: var(--cc-primary-text);
  transform: translateX(22px);
}

.cc-switch input:disabled + .cc-switch__visual {
  cursor: not-allowed;
  opacity: 0.72;
}

.cc-modal__footer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 16px 22px 20px;
  border-top: 1px solid var(--cc-border);
  background: var(--cc-background);
}

.cc-modal-open {
  overflow: hidden !important;
}

.cc-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.cc-iframe-placeholder {
  display: flex;
  width: 100%;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 2px dashed #9ca3af;
  border-radius: 12px;
  background: #f9fafb;
  color: #111827;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-align: center;
}

.cc-iframe-placeholder__title {
  font-size: 1rem;
}

.cc-iframe-placeholder__description {
  max-width: 56ch;
  color: #4b5563;
  font-size: 0.9rem;
}

.cc-iframe-placeholder__button {
  --cc-primary: #1f2937;
  --cc-primary-text: #ffffff;
  --cc-background: #ffffff;
  --cc-radius: 12px;
  margin-top: 4px;
}

@media (max-width: 820px) {
  .cc-banner {
    padding: 10px;
  }

  .cc-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px;
  }

  .cc-banner__brand {
    display: none;
  }

  .cc-banner__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .cc-modal-layer {
    align-items: end;
    padding: 0;
  }

  .cc-modal {
    width: 100%;
    max-height: 94vh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: var(--cc-radius) var(--cc-radius) 0 0;
  }
}

@media (max-width: 560px) {
  .cc-banner__actions,
  .cc-modal__footer {
    grid-template-columns: 1fr;
  }

  .cc-modal__header,
  .cc-modal__body,
  .cc-modal__footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cc-modal__brand {
    display: none;
  }

  .cc-category__header {
    gap: 10px;
  }

  .cc-category__status {
    display: block;
    width: fit-content;
    margin: 5px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc-root *,
  .cc-root *::before,
  .cc-root *::after,
  .cc-iframe-placeholder *,
  .cc-iframe-placeholder *::before,
  .cc-iframe-placeholder *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .cc-banner__inner,
  .cc-modal,
  .cc-category,
  .cc-iframe-placeholder,
  .cc-button,
  .cc-icon-button,
  .cc-switch__visual {
    border-color: CanvasText;
  }

  .cc-button--decision,
  .cc-switch input:checked + .cc-switch__visual {
    background: Highlight;
    color: HighlightText;
    forced-color-adjust: none;
  }
}
