:root{
  --wbs-cookie-accent: var(--wbs-magenta-soft, #e016b8);
  --wbs-cookie-accent-strong: var(--wbs-magenta, #ff00d0);
  --wbs-cookie-ink: var(--wbs-text, #0b0f1a);
  --wbs-cookie-muted: var(--wbs-muted, rgba(11,15,26,.72));
  --wbs-cookie-line: var(--wbs-line, rgba(0,0,0,.08));
  --wbs-cookie-stroke: var(--wbs-stroke, rgba(0,0,0,.12));
  --wbs-cookie-bg: rgba(255,255,255,.96);
  --wbs-cookie-shadow: 0 18px 56px rgba(15,23,42,.16);
  --wbs-cookie-radius: 24px;
  --wbs-cookie-radius-sm: 18px;
  --wbs-cookie-gap: 16px;
}

body.wbs-cookie-banner-open{
  padding-bottom: clamp(150px, 18vw, 220px);
}

.wbsCookieBanner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.wbsCookieBanner.is-visible{
  display: flex;
}

.wbsCookieBanner__card{
  width: min(980px, 100%);
  pointer-events: auto;
  background: var(--wbs-cookie-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--wbs-cookie-line);
  border-radius: var(--wbs-cookie-radius);
  box-shadow: var(--wbs-cookie-shadow);
  padding: 18px 18px 16px;
}

.wbsCookieBanner__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wbs-cookie-muted);
}

.wbsCookieBanner__eyebrow::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wbs-cookie-accent-strong);
  flex: 0 0 auto;
}

.wbsCookieBanner__title{
  margin: 0 0 8px;
  color: var(--wbs-cookie-ink);
  font-family: var(--wbs-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.02em;
}

.wbsCookieBanner__text{
  margin: 0;
  max-width: 74ch;
  color: var(--wbs-cookie-muted);
  font-size: .96rem;
  line-height: 1.58;
}

.wbsCookieBanner__text a{
  color: var(--wbs-cookie-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.wbsCookieFooterLink{
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wbsCookieFooterLink:hover{
  text-decoration: underline;
}

#footer_v2_2 button.footer__link.wbsCookieFooterLink{
  width: fit-content;
}

.footerLinks .wbsCookieFooterLink,
.legalFooter .wbsCookieFooterLink,
footer .wbsCookieFooterLink{
  color: inherit;
}

.wbsCookieFooterLinkWrap{
  margin-top: 12px;
}

.footerLinks .wbsCookieFooterLink{
  font-size: inherit;
}

@media (max-width: 720px){
  .wbsCookieFooterLinkWrap{
    margin-top: 10px;
  }
}

.wbsCookieBanner__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.wbsCookieBtn{
  appearance: none;
  -webkit-appearance: none;
  min-width: 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--wbs-cookie-stroke);
  background: #fff;
  color: var(--wbs-cookie-ink);
  font: inherit;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.wbsCookieBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.wbsCookieBtn:focus-visible,
.wbsFormInlineBtn:focus-visible{
  outline: 3px solid rgba(255,0,208,.22);
  outline-offset: 3px;
}

.wbsCookieBtn--primary{
  background: rgba(224,22,184,.08);
  border-color: rgba(224,22,184,.34);
}

.wbsCookieBtn--secondary{
  background: #fff;
}

.wbsFormShell{
  margin: 0 0 16px;
}

.wbsFormPlaceholder{
  margin: 0 0 16px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(11,15,26,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,0,208,.035) 100%);
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.wbsFormPlaceholder.is-hidden{
  display: none;
}

.wbsFormPlaceholder__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wbs-cookie-muted);
}

.wbsFormPlaceholder__eyebrow::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wbs-cookie-accent-strong);
  flex: 0 0 auto;
}

.wbsFormPlaceholder__title{
  margin: 0 0 8px;
  color: var(--wbs-cookie-ink);
  font-family: var(--wbs-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(1.2rem, 1rem + .8vw, 1.55rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.02em;
}

.wbsFormPlaceholder__text{
  margin: 0;
  max-width: 64ch;
  color: var(--wbs-cookie-muted);
  font-size: .96rem;
  line-height: 1.58;
}

.wbsFormActions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.wbsFormInlineBtn{
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 16px;
  border: 1px solid rgba(11,15,26,.14);
  background: #fff;
  color: var(--wbs-cookie-ink);
  font: inherit;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  text-decoration: none;
}

.wbsFormInlineBtn:hover,
.wbsCookieBtn:hover{
  text-decoration: none;
}

body.wbs-form-page .page{
  padding-bottom: 96px;
}

body.wbs-form-page .powr-form-builder{
  min-height: 120px;
}

@media (max-width: 720px){
  .wbsCookieBanner{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .wbsCookieBanner__card{
    border-radius: 20px;
    padding: 16px 14px 14px;
  }

  .wbsCookieBanner__actions,
  .wbsFormActions{
    flex-direction: column;
  }

  .wbsCookieBtn,
  .wbsFormInlineBtn{
    width: 100%;
    min-width: 0;
  }

    .wbsFormPlaceholder{
    border-radius: 18px;
    padding: 16px 14px 14px;
  }
}

@media (prefers-reduced-motion: reduce){
  .wbsCookieBtn,
  .wbsFormInlineBtn{
    transition: none !important;
  }
}
