/* Applied only to logged-out visitors on single post pages. */
.mcg-content-protected article,
.mcg-content-protected .entry-content,
.mcg-content-protected .elementor-widget-theme-post-content,
.mcg-content-protected .elementor-widget-text-editor {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mcg-content-protected input,
.mcg-content-protected textarea,
.mcg-content-protected select,
.mcg-content-protected option,
.mcg-content-protected [contenteditable="true"] {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.mcg-toast {
	position: fixed;
	right: 50%;
	bottom: 28px;
	z-index: 2147483647;
	max-width: min(420px, calc(100vw - 32px));
	padding: 12px 20px;
	border-radius: 9px;
	background: rgba(24, 30, 38, .96);
	box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
	color: #fff;
	font: 600 14px/1.6 Arial, sans-serif;
	direction: rtl;
	text-align: center;
	opacity: 0;
	transform: translate(50%, 12px);
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}

.mcg-toast.is-visible {
	opacity: 1;
	transform: translate(50%, 0);
}

