.occp-root,
.occp-root * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.occp-root {
  color: var(--occp-text, #172033);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  z-index: 2147483000;
}

.occp-root [hidden] {
  display: none !important;
}

.occp-banner {
  align-items: center;
  background: var(--occp-surface, #fff);
  border-top: 5px solid var(--occp-accent, #e8b96f);
  bottom: 0;
  box-shadow: 0 -10px 36px rgba(23, 32, 51, 0.18);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 0;
  padding: 22px max(24px, calc((100vw - 1280px) / 2));
  position: fixed;
  right: 0;
}

.occp-banner h2,
.occp-centre h2,
.occp-choice h3 {
  color: var(--occp-primary, #243451);
  font-family: inherit;
  letter-spacing: 0;
  margin: 0;
}

.occp-banner h2 {
  font-size: clamp(1.4rem, 1.4rem + 0.2vw, 1.75rem);
  line-height: 1.2;
}

.occp-banner p,
.occp-centre p,
.occp-choice p {
  margin: 8px 0 0;
}

.occp-eyebrow {
  color: var(--occp-primary, #243451);
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 6px !important;
  text-transform: uppercase;
}

.occp-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
}

.occp-root .occp-policy-links a {
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.occp-root .occp-policy-links a:focus-visible {
  outline: 3px solid var(--occp-accent, #e8b96f);
  outline-offset: 3px;
}

.occp-banner__actions,
.occp-centre__footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.occp-root .occp-button,
.occp-root .occp-icon-button,
.occp-root .occp-launcher,
.occp-root .occp-inline-launcher {
  appearance: none;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 46px;
  padding: 10px 18px;
  text-align: center;
}

.occp-root .occp-button:focus-visible,
.occp-root .occp-icon-button:focus-visible,
.occp-root .occp-launcher:focus-visible,
.occp-root .occp-inline-launcher:focus-visible,
.occp-root .occp-switch input:focus-visible + .occp-switch__track {
  outline: 3px solid var(--occp-accent, #e8b96f);
  outline-offset: 3px;
}

.occp-root .occp-button--primary,
.occp-root .occp-inline-launcher {
  background: var(--occp-primary, #243451);
  color: #fff;
}

.occp-root .occp-button--outline {
  background: transparent;
  border-color: var(--occp-primary, #243451);
  color: var(--occp-primary, #243451);
}

.occp-root .occp-button--text {
  background: transparent;
  color: var(--occp-primary, #243451);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.occp-backdrop {
  background: rgba(10, 15, 26, 0.62);
  inset: 0;
  position: fixed;
}

.occp-centre {
  background: var(--occp-surface, #fff);
  box-shadow: -18px 0 50px rgba(10, 15, 26, 0.22);
  height: 100vh;
  height: 100dvh;
  max-width: 560px;
  overflow-y: auto;
  padding: 28px;
  position: fixed;
  right: 0;
  top: 0;
  width: min(100%, 560px);
}

.occp-inventory-wrap {
  margin: 22px 0;
  max-width: 100%;
  overflow-x: auto;
}

.occp-inventory {
  border-collapse: collapse;
  min-width: 680px;
  width: 100%;
}

.occp-inventory th,
.occp-inventory td {
  border-bottom: 1px solid #dce1e9;
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

.occp-inventory thead th {
  background: var(--occp-primary, #243451);
  color: #fff;
}

.occp-centre__header {
  align-items: start;
  border-bottom: 1px solid #dce1e9;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 20px;
}

.occp-centre h2 {
  font-size: 1.75rem;
  line-height: 1.2;
}

.occp-root .occp-icon-button {
  background: transparent;
  border-color: #c8d0dc;
  color: var(--occp-primary, #243451);
  font-size: 1.75rem;
  line-height: 1;
  min-width: 46px;
  padding: 4px;
}

.occp-choices {
  border-top: 1px solid #dce1e9;
  margin-top: 24px;
}

.occp-choice {
  align-items: center;
  border-bottom: 1px solid #dce1e9;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 20px 0;
}

.occp-choice h3 {
  font-size: 1.1rem;
}

.occp-choice p {
  color: #4a5568;
}

.occp-switch {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.occp-switch input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.occp-switch__track {
  background: #737f90;
  border: 2px solid transparent;
  border-radius: 999px;
  display: block;
  height: 30px;
  position: relative;
  width: 54px;
}

.occp-switch__track::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 22px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 160ms ease;
  width: 22px;
}

.occp-switch input:checked + .occp-switch__track {
  background: var(--occp-primary, #243451);
}

.occp-switch input:checked + .occp-switch__track::after {
  transform: translateX(24px);
}

.occp-switch input:disabled + .occp-switch__track {
  opacity: 0.72;
}

.occp-switch__status {
  color: #4a5568;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.occp-gpc {
  background: #eef3f8;
  border-left: 4px solid var(--occp-accent, #e8b96f);
  padding: 12px 14px;
}

.occp-centre__footer {
  border-top: 1px solid #dce1e9;
  margin-top: 24px;
  padding-top: 24px;
}

.occp-root .occp-launcher {
  align-items: center;
  background: var(--occp-primary, #243451);
  bottom: 18px;
  box-shadow: 0 8px 24px rgba(10, 15, 26, 0.2);
  color: #fff;
  display: flex;
  gap: 7px;
  left: 18px;
  min-height: 44px;
  padding: 8px 13px;
  position: fixed;
}

.occp-root .occp-inline-launcher {
  display: inline-flex;
  text-decoration: none;
}

.occp-dialog-open {
  overflow: hidden;
}

@media (hover: hover) {
  .occp-root .occp-button--primary:hover,
  .occp-root .occp-inline-launcher:hover,
  .occp-root .occp-launcher:hover {
    background: var(--occp-accent, #e8b96f);
    color: var(--occp-text, #172033);
  }
}

@media (max-width: 780px) {
  .occp-banner {
    align-items: stretch;
    gap: 18px;
    grid-template-columns: 1fr;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
    padding: 20px;
  }

  .occp-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .occp-banner__actions .occp-button--text {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .occp-centre {
    max-width: none;
    padding: 20px;
    width: 100%;
  }

  .occp-centre__footer,
  .occp-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .occp-banner__actions .occp-button--text {
    grid-column: auto;
  }

  .occp-choice {
    gap: 14px;
  }

  .occp-launcher {
    bottom: 10px;
    left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .occp-root *,
  .occp-root *::before,
  .occp-root *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
