.bp-cookie-consent[hidden] {
  display: none !important;
}

.bp-cookie-consent {
  position: fixed;
  z-index: 1095;
  right: clamp(.75rem, 2vw, 1.5rem);
  bottom: clamp(.75rem, 2vw, 1.5rem);
  left: clamp(.75rem, 2vw, 1.5rem);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.bp-cookie-consent__panel {
  width: min(100%, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-top: 5px solid #f26a00;
  border-radius: 0;
  background: #f7f7f5;
  color: #1a1c1f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: auto;
}

.bp-cookie-consent.is-visible .bp-cookie-consent__panel {
  opacity: 1;
  transform: translateY(0);
}

.bp-cookie-consent__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.bp-cookie-consent__cookie {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 31%, #181a1d 0 3px, transparent 3.5px),
    radial-gradient(circle at 62% 25%, #181a1d 0 3.5px, transparent 4px),
    radial-gradient(circle at 43% 58%, #181a1d 0 3px, transparent 3.5px),
    radial-gradient(circle at 72% 67%, #181a1d 0 3px, transparent 3.5px),
    #f26a00;
  box-shadow: inset -8px -10px 0 rgba(0, 0, 0, .12);
}

.bp-cookie-consent__cookie::before,
.bp-cookie-consent__cookie::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #f7f7f5;
}

.bp-cookie-consent__cookie::before {
  top: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
}

.bp-cookie-consent__cookie::after {
  top: 14px;
  right: -9px;
  width: 18px;
  height: 18px;
}

.bp-cookie-consent__eyebrow {
  margin: 0 0 .35rem;
  color: #f26a00;
  font-family: "Arimo", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bp-cookie-consent h2 {
  margin: 0;
  color: #15171a;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.bp-cookie-consent__copy {
  margin: .85rem 0 0;
  color: #4d5156;
  font-family: "Arimo", Arial, sans-serif;
  font-size: .95rem;
  line-height: 1.58;
}

.bp-cookie-consent__copy strong {
  color: #202328;
}

.bp-cookie-consent__choices {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}

.bp-cookie-consent__choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 64px;
  padding: .85rem .95rem;
  border: 1px solid #d7d8d5;
  background: #fff;
  cursor: pointer;
}

.bp-cookie-consent__choice:hover {
  border-color: #b9bbb8;
}

.bp-cookie-consent__choice-copy {
  display: grid;
  gap: .2rem;
  min-width: 0;
  color: #565b60;
  font-family: "Arimo", Arial, sans-serif;
  font-size: .82rem;
  line-height: 1.42;
}

.bp-cookie-consent__choice-copy strong {
  color: #202328;
  font-size: .9rem;
}

.bp-cookie-consent__choice input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #f26a00;
  cursor: pointer;
}

.bp-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  margin-top: 1.25rem;
}

.bp-cookie-consent__button {
  min-height: 44px;
  padding: .72rem 1rem;
  border: 1px solid #202328;
  border-radius: 0;
  font-family: "Arimo", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.bp-cookie-consent__button:hover {
  transform: translateY(-1px);
}

.bp-cookie-consent__button--accept {
  border-color: #f26a00;
  background: #f26a00;
  color: #fff;
}

.bp-cookie-consent__button--accept:hover {
  border-color: #ff8a2a;
  background: #ff8a2a;
}

.bp-cookie-consent__button--all {
  border-color: #6a6e73;
  background: #fff;
  color: #202328;
}

.bp-cookie-consent__button--all:hover {
  border-color: #34383d;
  background: #ececea;
}

.bp-cookie-consent__button--decline {
  background: #202328;
  color: #fff;
}

.bp-cookie-consent__button--decline:hover {
  border-color: #34383d;
  background: #34383d;
}

.bp-cookie-consent__privacy {
  color: #555a60;
  font-family: "Arimo", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-underline-offset: .2em;
}

.bp-cookie-consent__privacy:hover {
  color: #b94700;
}

.bp-cookie-consent__status {
  min-height: 1.3em;
  margin: .75rem 0 0;
  color: #6a6e73;
  font-family: "Arimo", Arial, sans-serif;
  font-size: .78rem;
}

.cookie-settings-button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  cursor: pointer;
}

.cookie-settings-button:hover {
  color: #f26a00;
}

.bp-cookie-consent button:focus-visible,
.bp-cookie-consent input:focus-visible,
.cookie-settings-button:focus-visible {
  outline: 3px solid #ff8a2a;
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .bp-cookie-consent {
    right: .55rem;
    bottom: .55rem;
    left: .55rem;
  }

  .bp-cookie-consent__inner {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .bp-cookie-consent__cookie {
    width: 52px;
    height: 52px;
  }

  .bp-cookie-consent__choice {
    gap: .75rem;
    padding: .8rem;
  }

  .bp-cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bp-cookie-consent__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp-cookie-consent__panel,
  .bp-cookie-consent__button {
    transition: none;
  }
}
