.privacy-consent-banner,
.privacy-consent-settings {
  position: fixed;
  z-index: 2147483000;
  color: #f8fafc;
  background: #111827;
  border: 1px solid #38bdf8;
  box-shadow: 0 12px 35px rgb(0 0 0 / 45%);
  font-family: system-ui, sans-serif;
}

.privacy-consent-banner {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  max-width: 70rem;
  margin: auto;
  padding: 1rem;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
}

.privacy-consent-banner[hidden],
.privacy-consent-settings[hidden] {
  display: none;
}

.privacy-consent-content {
  max-width: 52rem;
}

.privacy-consent-content h2 {
  margin: 0 0 0.4rem;
  color: #7dd3fc;
  font-size: 1.15rem;
}

.privacy-consent-content p {
  margin: 0 0 0.4rem;
  line-height: 1.5;
}

.privacy-consent-content a {
  color: #7dd3fc;
}

.privacy-consent-choices {
  display: grid;
  min-width: 13rem;
  gap: 0.6rem;
  grid-template-columns: 1fr 1fr;
}

.privacy-consent-choice,
.privacy-consent-settings {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  color: #082f49;
  background: #7dd3fc;
  border: 2px solid #7dd3fc;
  border-radius: 0.45rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.privacy-consent-choice:focus-visible,
.privacy-consent-settings:focus-visible,
.privacy-consent-content a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.privacy-consent-settings {
  right: 1rem;
  bottom: 1rem;
  min-height: auto;
  box-shadow: 0 6px 20px rgb(0 0 0 / 35%);
}

@media (max-width: 48rem) {
  .privacy-consent-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-consent-choices {
    width: 100%;
  }
}

@media (max-width: 28rem) {
  .privacy-consent-choices {
    grid-template-columns: 1fr;
  }
}
