/*
 * Family Life Outreach Center content-protection deterrents.
 * Browser controls cannot guarantee prevention of screenshots or copying.
 */
html.content-protection-active,
html.content-protection-active body,
html.content-protection-active body *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]):not(.allow-selection):not(.allow-selection *):not(.allow-copy):not(.allow-copy *) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html.content-protection-active input,
html.content-protection-active textarea,
html.content-protection-active select,
html.content-protection-active option,
html.content-protection-active [contenteditable="true"],
html.content-protection-active .allow-selection,
html.content-protection-active .allow-selection *,
html.content-protection-active .allow-copy,
html.content-protection-active .allow-copy * {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
}

html.content-protection-active img,
html.content-protection-active video,
html.content-protection-active audio,
html.content-protection-active svg {
  -webkit-user-drag: none;
  user-drag: none;
}

.content-protection-obscured body > *:not(#contentProtectionModal):not(.modal-backdrop) {
  filter: blur(18px) !important;
  opacity: .08 !important;
  pointer-events: none !important;
}

.content-protection-print-notice { display: none; }

@media print {
  html.content-protection-active body > * { display: none !important; }
  html.content-protection-active body::before {
    content: "Printing this website is prohibited.";
    display: block !important;
    padding: 3rem;
    color: #111;
    background: #fff;
    font: 700 24pt/1.4 Georgia, "Times New Roman", serif;
    text-align: center;
  }
}
