/**
 * Copy-Protection styles – only enqueued when tt_copy_protection_enabled = 1.
 *
 * @package top_taxi
 */

body.tt-no-copy,
body.tt-no-copy * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Keep form fields fully usable */
body.tt-no-copy input,
body.tt-no-copy textarea,
body.tt-no-copy select,
body.tt-no-copy [contenteditable="true"] {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

body.tt-no-copy img {
	-webkit-user-drag: none;
	user-drag: none;
	pointer-events: auto;
}
