.cris-consent-banner {
  align-items: center;
  background: #201e1b;
  border: 1px solid #4d4942;
  border-radius: 14px;
  bottom: 1rem;
  box-shadow: 0 1rem 3rem #0008;
  color: #f8f5ee;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  left: 50%;
  max-width: 72rem;
  padding: 1rem;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 9999;
}
.cris-consent-banner[hidden] {
  display: none;
}
.cris-consent-banner p {
  margin: .35rem 0;
}
.cris-consent-banner a {
  color: #f4b840;
}
.cris-consent-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: .5rem;
}
.cris-consent-banner button {
  background: transparent;
  border: 1px solid #777168;
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: .75rem 1rem;
}
.cris-consent-banner button.is-primary {
  background: #f4b840;
  border-color: #f4b840;
  color: #171512;
}
@media (max-width: 700px) {
  .cris-consent-banner,
  .cris-consent-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }
}
