#cookie-consent-acf-backdrop {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: block;
}
#cookie-consent-acf-modal {
  position: fixed;
  z-index: 9999;
  bottom: 1.3vw;
  inset-inline-end: 0.73vw;
  display: block;
  border-radius: 1.25vw;
  background: #fff;
  padding: 1.25vw;
  width: 100%;
  max-width: 29.06vw;
}
.cookie-consent-acf-content {
  display: flex;
  flex-direction: column;
}
.cookie-message {
  font-size: 0.83vw;
}
.cookie-message * {
  font-size: 0.83vw;
  line-height: 160%;
}
.cookie-message a {
  color: var(--cookie-link-color, #0073aa);
  text-decoration: underline;
  font-weight: 500;
}
#cookie-consent-acf-accept {
  margin-top: 0.83vw;
  padding: 0.68vw 1.25vw;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 0.94vw;
  cursor: pointer;
  transition: background 0.2s;
  max-width: fit-content;
}
@media screen and (max-width: 768px) {
  #cookie-consent-acf-modal {
    bottom: max(env(safe-area-inset-bottom, 0), 2.05vw);
    inset-inline-end: 2.05vw;
    inset-inline-start: 2.05vw;
    max-width: 95.9vw;
    border-radius: 6.15vw;
    padding: 5.13vw;
  }
  .cookie-message {
    font-size: 4.1vw;
  }
  .cookie-message * {
    font-size: 4.1vw;
  }
  #cookie-consent-acf-accept {
    margin-top: 4.1vw;
    font-size: 4.62vw;
    padding: 3.33vw 6.15vw;
  }
}
