#cc-main {
    /* Primary button (Accept All) */
    --cc-btn-primary-bg: #FF6C0E;
    --cc-btn-primary-color: #ffffff;
    --cc-btn-primary-border-color: #FF6C0E;
    --cc-btn-primary-hover-bg: #e65a00; /* slightly darker on hover */
    --cc-btn-primary-hover-color: #ffffff;
    --cc-btn-primary-hover-border-color: #e65a00;
    /* Secondary button (Reject / Preferences) */
    --cc-btn-secondary-bg: #008D5A;
    --cc-btn-secondary-color: #ffffff;
    --cc-btn-secondary-border-color: #008D5A;
    --cc-btn-secondary-hover-bg: #00784a; /* slightly darker on hover */
    --cc-btn-secondary-hover-color: #ffffff;
    --cc-btn-secondary-hover-border-color: #00784a;
    /* Optional: general text colors in banner */
    --cc-primary-color: #222222;
    --cc-secondary-color: #555555;
}

html #cc-main {
  font: inherit;
}

  html #cc-main .pm-wrapper {
    position: fixed;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease, z-index 0s 0.5s, pointer-events 0s 0.5s;
    padding: 24px;
  }

html.show--preferences #cc-main .pm-wrapper {
  position: fixed;
  opacity: 1;
  z-index: 9999;
  pointer-events: auto;
  transition: opacity 0.5s ease, z-index 0s, pointer-events 0s;
}

html #cc-main .pm__btn,
html #cc-main .cm__btn {
  box-sizing: border-box;
  height: 2.5rem;
  min-height: 0;
  padding: 0 1rem;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.375rem;
  column-gap: 0.375rem;
  border-style: solid;
  border-width: 1px;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: normal;
  transition-property: color, background-color, box-shadow, border-color !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 300ms !important;
}

  html #cc-main .pm__btn:hover,
  html #cc-main .cm__btn:hover,
  html #cc-main .pm__close-btn:hover {
    box-shadow: 0px 0px 24px 0px #0000003D;
    border-color: transparent;
  }

html #cc-main .toggle__icon {
  background: var(--color-basic-300);
  box-shadow: 0 0 0 2px var(--color-basic-300);
  border: none;
  border-radius: var(--cc-pm-toggle-border-radius);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform .25s ease, background-color .25s ease;
}

html #cc-main .section__toggle,
html #cc-main .section__toggle-wrapper,
html #cc-main .toggle__icon,
html #cc-main .toggle__label {
  height: 20px;
  width: 40px;
}

html #cc-main .toggle__icon-circle {
  background: var(--color-white);
  border: none;
  border-radius: var(--cc-pm-toggle-border-radius);
  box-shadow: none;
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform .25s ease, background-color .25s ease;
}

html #cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(20px);
}

html #cc-main .pm__section--expandable .pm__section-arrow {
  background: var(--color-basic-300);
}

html #cc-main .cm__desc,
html #cc-main .cm__title {
  padding: 0 1.5rem;
}


html #cc-main .cm__btns,
html #cc-main .cm__links {
  padding: 1rem;
  width: unset;
}

html #cc-main .cm__texts {
  padding: 1.5rem 0 0;
}

html #cc-main .pm__title,
html #cc-main .cm__title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: normal;
}


html #cc-main .cm__desc {
  color: var(--color-basic-700);
  font-size: 14px;
  line-height: 1.4;
}

html #cc-main .pm__body {
  padding: 1rem;
}

html #cc-main .pm__footer {
  padding: 1rem !important;
}

html #cc-main .pm__header {
  padding: 1rem !important;
}
