.mrv-cp-no-selection body,
.mrv-cp-no-selection body *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]):not(.mrv-cp-allow) {
	-webkit-user-select: none !important;
	user-select: none !important;
}

.mrv-cp-toast {
	align-items: center;
	animation: mrv-cp-toast-in .44s cubic-bezier(.2, .9, .3, 1.16) both;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 42%),
		linear-gradient(135deg, #7f101c, #b91f31);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 16px;
	bottom: max(24px, env(safe-area-inset-bottom));
	box-shadow:
		0 20px 40px rgba(91, 8, 20, .34),
		inset 0 1px 0 rgba(255, 255, 255, .16);
	box-sizing: border-box;
	color: #fff;
	display: flex;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	gap: 13px;
	left: 50%;
	max-width: min(430px, calc(100vw - 32px));
	min-width: min(360px, calc(100vw - 32px));
	padding: 14px 18px 14px 14px;
	pointer-events: none;
	position: fixed;
	transform-origin: center bottom;
	z-index: 2147483646;
}

.mrv-cp-toast--leaving {
	animation: mrv-cp-toast-out .36s cubic-bezier(.55, 0, .85, .3) both;
}

.mrv-cp-toast__icon {
	align-items: center;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 12px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
	display: flex;
	flex: 0 0 42px;
	font-size: 21px;
	font-weight: 750;
	height: 42px;
	justify-content: center;
	line-height: 1;
}

.mrv-cp-toast__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.mrv-cp-toast__eyebrow {
	color: rgba(255, 255, 255, .72);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .13em;
	line-height: 1.4;
	text-transform: uppercase;
}

.mrv-cp-toast__message {
	color: #fff;
	font-size: 14px;
	font-weight: 580;
	letter-spacing: -.01em;
	line-height: 1.45;
}

@keyframes mrv-cp-toast-in {
	from {
		opacity: 0;
		transform: translate(-50%, 22px) scale(.97);
	}

	to {
		opacity: 1;
		transform: translate(-50%, 0) scale(1);
	}
}

@keyframes mrv-cp-toast-out {
	from {
		opacity: 1;
		transform: translate(-50%, 0) scale(1);
	}

	to {
		opacity: 0;
		transform: translate(-50%, 18px) scale(.98);
	}
}

.mrv-cp-watermark {
	display: inline-block;
	max-width: 100%;
	position: relative;
	vertical-align: middle;
}

.mrv-cp-watermark > img,
.mrv-cp-watermark > picture,
.mrv-cp-watermark > picture > img {
	display: block;
	height: auto;
	max-width: 100%;
}

.mrv-cp-watermark__overlay {
	color: #fff;
	font: 700 clamp(12px, 2vw, 24px)/1.1 system-ui, sans-serif;
	letter-spacing: .08em;
	max-width: 80%;
	padding: .35em .55em;
	pointer-events: none;
	position: absolute;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .85);
	z-index: 2;
}

.mrv-cp-watermark__overlay--top-left {
	left: 4%;
	top: 4%;
}

.mrv-cp-watermark__overlay--top-right {
	right: 4%;
	top: 4%;
}

.mrv-cp-watermark__overlay--bottom-left {
	bottom: 4%;
	left: 4%;
}

.mrv-cp-watermark__overlay--bottom-right {
	bottom: 4%;
	right: 4%;
}

.mrv-cp-watermark__overlay--center {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.mrv-cp-watermark__overlay--image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: min(30%, 120px);
	min-height: 40px;
	padding: 0;
	width: min(45%, 220px);
}

@media print {
	.mrv-cp-no-print body {
		display: none !important;
	}

	.mrv-cp-toast {
		display: none !important;
	}
}

@media (max-width: 480px) {
	.mrv-cp-toast {
		bottom: max(16px, env(safe-area-inset-bottom));
		min-width: 0;
		width: calc(100vw - 24px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.mrv-cp-toast,
	.mrv-cp-toast--leaving {
		animation-duration: .01ms;
	}
}
