body.content-protected,
body.content-protected *:not(input):not(textarea):not(select):not([contenteditable="true"]):not(.allow-copy):not(.allow-copy *) {
    -webkit-user-select: none;
    user-select: none;
}

body.content-protected img,
body.content-protected video {
    -webkit-user-drag: none;
    user-drag: none;
}

body.content-protected img {
    -webkit-touch-callout: none;
}

@media print {
    body.content-protected > * {
        display: none !important;
    }

    body.content-protected::before {
        content: "Bu içerik telif hakkı ile korunmaktadır.";
        display: block;
        padding: 48px;
        color: #111820;
        font: 700 20px/1.5 Arial, sans-serif;
        text-align: center;
    }
}
