body:not(.edit-mode) img,
body:not(.edit-mode) picture,
body:not(.edit-mode) figure,
body:not(.edit-mode) video,
body:not(.edit-mode) .photo-protected-background {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

.photo-protection-notice {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  max-width: min(390px, calc(100vw - 36px));
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  color: #fff;
  background: rgba(7, 32, 50, .94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .22);
  font: 700 14px/1.35 Montserrat, Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.photo-protection-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media print {
  body:not(.edit-mode) main img,
  body:not(.edit-mode) main picture,
  body:not(.edit-mode) main figure,
  body:not(.edit-mode) main video,
  body:not(.edit-mode) main .photo-protected-background {
    visibility: hidden !important;
  }
}
