.privacy-choice-button {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.privacy-consent {
  bottom: 0;
  left: 0;
  padding: 1rem;
  position: fixed;
  right: 0;
  z-index: var(--overlay-consent, 1000);
}

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

.privacy-consent__panel {
  align-items: center;
  background: #0c1424;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .45);
  color: #f7f9ff;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 72rem;
  padding: 1rem 1.25rem;
}

.privacy-consent__panel h2 {
  color: inherit;
  font-size: 1.05rem;
  margin: 0 0 .35rem;
}

.privacy-consent__panel p {
  color: #dce5f5;
  margin: 0;
  max-width: 52rem;
}

.privacy-consent__panel a {
  color: #fff;
}

.privacy-consent__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: .65rem;
}

@media (max-width: 760px) {
  .privacy-consent {
    padding: .65rem;
  }

  .privacy-consent__panel {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-consent__actions .btn {
    flex: 1 1 12rem;
  }
}
