/* Article Copy Guard */

/* Text selection */
body.acg-noselect.acg-scope-page,
body.acg-noselect.acg-scope-content .acg-protected {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-touch-callout: none; /* iOS long-press menu */
}

/* Form fields always stay usable */
body.acg-noselect input,
body.acg-noselect textarea,
body.acg-noselect select,
body.acg-noselect [contenteditable="true"] {
	-webkit-user-select: text;
	-moz-user-select: text;
	user-select: text;
	-webkit-touch-callout: default;
}

/* Images */
body.acg-guard.acg-scope-page img,
body.acg-guard.acg-scope-content .acg-protected img {
	-webkit-user-drag: none;
}

/* Warning message */
.acg-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 999999;
	max-width: calc(100% - 32px);
	padding: 10px 16px;
	border-radius: 6px;
	background: #1d2327;
	color: #fff;
	font: 14px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.acg-toast--show {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* Printing */
.acg-print-message {
	display: none;
}

@media print {
	body.acg-noprint > *:not(.acg-print-message) {
		display: none !important;
	}

	body.acg-noprint .acg-print-message {
		display: block !important;
		padding: 40px;
		font-size: 18px;
		text-align: center;
	}
}
