/* Cookies Consent Popup */
#cookie-consent-popup {
  display: none;
  position: fixed;
  /* Savoy + Woo blocks can use high z-index layers; keep this above them */
  z-index: 999999;
  bottom: 2rem;
  right: 2rem;
  width: 65%;
  max-width: 230px;
  padding: 1.4rem 1rem 0;
  border-radius: 5px;

  /* Ensure it's visible on any theme background */
  background: rgba(0,0,0,.9);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

#cookie-consent-popup p {
  display: block;
  text-align: center;
}

#cookie-consent-popup a { color: inherit; text-decoration: underline; }

#cookie-consent-popup a.button {
  cursor: pointer;
  width: 100%;
  margin: 0;
  text-decoration: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  #cookie-consent-popup {
    max-width: 260px;
  }
}
