.revivify-consent[hidden],
.revivify-consent-settings[hidden] {
  display: none !important;
}

.revivify-consent {
  position: fixed;
  z-index: 999999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: center;
  font-family: inherit;
}

.revivify-consent__content {
  width: min(680px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.revivify-consent__content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.revivify-consent__content p {
  margin: 0;
  color: #f2f2f2;
  font-size: 14px;
  line-height: 1.55;
}

.revivify-consent__content a {
  color: #fff;
  text-decoration: underline;
}

.revivify-consent__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.revivify-consent__button,
.revivify-consent-settings {
  border: 1px solid #d71920;
  border-radius: 4px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.revivify-consent__button--primary {
  background: #d71920;
  color: #fff;
}

.revivify-consent__button--secondary {
  background: transparent;
  color: #fff;
}

.revivify-consent-settings {
  position: fixed;
  z-index: 999998;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: #fff;
  color: #222;
  font-size: 12px;
}

.revivify-consent__button:focus-visible,
.revivify-consent-settings:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 540px) {
  .revivify-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .revivify-consent__content {
    padding: 18px;
  }

  .revivify-consent__actions {
    flex-direction: column-reverse;
  }

  .revivify-consent__button {
    width: 100%;
  }
}
