/* Placeholder shown over a third-party embed (Google Maps, YouTube, ...)
   until the visitor consents. Not part of the CookieConsent library --
   safe to restyle to match a site's theme. */
.cc-embed-placeholder {
  position: relative;
  min-height: 300px;
  background: #eee;
  overflow: hidden;
}
.cc-embed-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}
.cc-embed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  padding: 1.5em;
  text-align: center;
  background: rgba(20, 20, 20, 0.75);
  color: #fff;
  font-family: sans-serif;
}
.cc-embed-overlay p {
  margin: 0;
  max-width: 32em;
}
.cc-embed-accept-btn {
  cursor: pointer;
  padding: 0.6em 1.4em;
  border: 0;
  border-radius: 3px;
  background: #fff;
  color: #111;
  font-size: 1em;
}
.cc-embed-accept-btn:hover {
  opacity: 0.9;
}
