.dnb-content-guard--no-select main,
.dnb-content-guard--no-select article,
.dnb-content-guard--no-select footer,
.dnb-content-guard--no-select .entry-content,
.dnb-content-guard--no-select .page-content,
.dnb-content-guard--no-select .insight-article,
.dnb-content-guard--no-select .cuesta-footer {
  -webkit-user-select: none;
  user-select: none;
}

.dnb-content-guard--no-select input,
.dnb-content-guard--no-select textarea,
.dnb-content-guard--no-select select,
.dnb-content-guard--no-select [contenteditable="true"],
.dnb-content-guard--no-select .dnb-copy-allowed,
.dnb-content-guard--no-select a[href^="mailto:"],
.dnb-content-guard--no-select a[href^="tel:"] {
  -webkit-user-select: text;
  user-select: text;
}

.dnb-content-guard-notice {
  position: fixed;
  z-index: 999999;
  right: 20px;
  bottom: 20px;
  max-width: min(390px, calc(100vw - 40px));
  padding: 13px 17px;
  border-left: 4px solid #ffb81c;
  background: #071b31;
  color: #fff;
  box-shadow: 0 14px 34px rgba(7, 27, 49, .28);
  font: 600 14px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.dnb-content-guard-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .dnb-content-guard-notice {
    right: 15px;
    bottom: 15px;
    max-width: calc(100vw - 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dnb-content-guard-notice {
    transition: none;
  }
}
