/* Small dismissible cookie notice. Widgets load as normal. */

:root {
  --ll-consent-banner-h: 0px;
}

.ll-cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  box-sizing: border-box;
  background: #fbfeff;
  color: #0b2029;
  border-top: 1px solid #c5d5d8;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.ll-cookie-notice[hidden] {
  display: none !important;
}

.ll-cookie-notice-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  box-sizing: border-box;
}

.ll-cookie-notice-text {
  margin: 0 !important;
  flex: 1 1 16rem;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  color: #334155 !important;
  font-family: inherit !important;
}

.ll-cookie-notice-privacy {
  font-weight: 600 !important;
  color: #006668 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.ll-cookie-notice-privacy:hover,
.ll-cookie-notice-privacy:focus-visible {
  color: #004c4e !important;
}

.ll-cookie-notice-dismiss {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  flex: 0 0 auto;
  min-height: 36px;
  min-width: 44px;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  border: 1px solid #006668 !important;
  background: #ffffff !important;
  color: #006668 !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  cursor: pointer;
}

.ll-cookie-notice-dismiss:hover,
.ll-cookie-notice-dismiss:focus-visible {
  background: #eaf9f9 !important;
}

.ll-cookie-notice-dismiss:focus-visible,
.ll-cookie-notice-privacy:focus-visible {
  outline: 3px solid #006668;
  outline-offset: 3px;
}

/* Lift Call Workshop so the number stays usable above the bar. */
body.ll-consent-open .launchlayer-floating-pill-container {
  bottom: calc(var(--ll-consent-banner-h, 72px) + 12px) !important;
}
