.efc-consent-bar,
.efc-consent-modal {
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  color: #14223F;
}

.efc-consent-bar[hidden],
.efc-consent-modal[hidden] {
  display: none !important;
}

.efc-consent-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  background: #FAF3DF;
  border: 2px solid #14223F;
  box-shadow: 0 16px 32px rgba(20, 34, 63, .24);
}

.efc-consent-bar p,
.efc-consent-modal p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.efc-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.efc-consent-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid #14223F;
  border-radius: 4px;
  background: #FAF3DF;
  color: #14223F;
  font: 700 12px/1 "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  cursor: pointer;
}

.efc-consent-btn:hover,
.efc-consent-btn:focus-visible {
  background: #FCD116;
}

.efc-consent-btn.primary {
  background: #CE1126;
  color: #fff;
}

.efc-consent-btn.primary:hover,
.efc-consent-btn.primary:focus-visible {
  background: #003893;
}

.efc-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483001;
  display: grid;
  place-items: center;
  padding: 16px;
}

.efc-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 34, 63, .52);
}

.efc-consent-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(720px, calc(100vh - 32px));
  overflow: auto;
  padding: 22px;
  background: #FAF3DF;
  border: 2px solid #14223F;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 34, 63, .32);
}

.efc-consent-panel h2 {
  margin: 0 44px 10px 0;
  font-size: 22px;
  line-height: 1.15;
}

.efc-consent-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 2px solid #14223F;
  border-radius: 4px;
  background: #FAF3DF;
  color: #14223F;
  font: 700 18px/1 Arial, sans-serif;
  cursor: pointer;
}

.efc-consent-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(20, 34, 63, .28);
  background: rgba(255, 255, 255, .38);
}

.efc-consent-choice input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.efc-consent-choice strong {
  display: block;
  font-size: 15px;
}

.efc-consent-choice span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #2C3856;
}

.efc-consent-panel .efc-consent-actions {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .efc-consent-bar {
    grid-template-columns: 1fr;
  }

  .efc-consent-actions {
    justify-content: stretch;
  }

  .efc-consent-btn {
    flex: 1 1 auto;
  }
}
