/**
 * RODO Consent Manager — banner & preferences modal styles.
 *
 * The palette is driven entirely by CSS custom properties that PHP prints
 * inline from the admin color pickers:
 *   --rodo-cc-bg, --rodo-cc-text, --rodo-cc-accent, --rodo-cc-accent-text,
 *   --rodo-cc-secondary, --rodo-cc-radius
 * Defaults below are a safety net if the inline block is missing.
 *
 * @package RODO_CC
 */

#rodo-cc-root {
	--rodo-cc-bg: #101a2e;
	--rodo-cc-text: #e6ecf5;
	--rodo-cc-accent: #2f6df6;
	--rodo-cc-accent-text: #ffffff;
	--rodo-cc-secondary: #1c2942;
	--rodo-cc-radius: 16px;

	--rodo-cc-muted: color-mix(in srgb, var(--rodo-cc-text) 64%, transparent);
	--rodo-cc-border: color-mix(in srgb, var(--rodo-cc-text) 16%, transparent);
	--rodo-cc-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.55), 0 6px 16px -8px rgba(0, 0, 0, 0.45);
	--rodo-cc-z: 2147483000;

	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#rodo-cc-root *,
#rodo-cc-root *::before,
#rodo-cc-root *::after {
	box-sizing: border-box;
}

/* --------------------------------------------------------------------- *
 * Banner shell
 * --------------------------------------------------------------------- */

.rodo-cc-banner {
	position: fixed;
	z-index: var(--rodo-cc-z);
	width: min(var(--rodo-cc-width, 440px), calc(100vw - 32px));
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	background: var(--rodo-cc-bg);
	color: var(--rodo-cc-text);
	border: 1px solid var(--rodo-cc-border);
	border-radius: var(--rodo-cc-radius);
	box-shadow: var(--rodo-cc-shadow);
	padding: 22px 22px 20px;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

.rodo-cc-banner.rodo-cc-in {
	opacity: 1;
	transform: translateY(0);
}

/* On a normal desktop/laptop height the first-layer box always fits, so do
 * not constrain it — this avoids an unnecessary scrollbar on the computer.
 * The cap above still protects very short windows. */
@media (min-height: 700px) {
	.rodo-cc-banner {
		max-height: none;
		overflow-y: visible;
	}
}

/* Positions */
.rodo-cc-pos-bottom-left { left: 16px; bottom: 16px; }
.rodo-cc-pos-bottom-right { right: 16px; bottom: 16px; }
.rodo-cc-pos-bottom-center { left: 50%; bottom: 16px; transform: translate(-50%, 16px); }
.rodo-cc-pos-bottom-center.rodo-cc-in { transform: translate(-50%, 0); }
.rodo-cc-pos-top { left: 50%; top: 16px; transform: translate(-50%, -16px); }
.rodo-cc-pos-top.rodo-cc-in { transform: translate(-50%, 0); }

/* Bar layout: full width strip */
.rodo-cc-layout-bar {
	width: calc(100vw - 32px);
	max-width: 1200px;
	left: 50%;
	transform: translate(-50%, 16px);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px 28px;
	align-items: center;
}

.rodo-cc-layout-bar.rodo-cc-in { transform: translate(-50%, 0); }
.rodo-cc-layout-bar .rodo-cc-actions { margin-top: 0; }
.rodo-cc-layout-bar .rodo-cc-head { grid-column: 1; }
.rodo-cc-layout-bar .rodo-cc-body { grid-column: 1; margin: 0; }
.rodo-cc-layout-bar .rodo-cc-links { grid-column: 1; }
.rodo-cc-layout-bar .rodo-cc-actions { grid-column: 2; grid-row: 1 / span 3; }

@media (max-width: 720px) {
	.rodo-cc-layout-bar {
		grid-template-columns: 1fr;
	}
	.rodo-cc-layout-bar .rodo-cc-actions { grid-column: 1; grid-row: auto; }
}

/* Overlay (modal-style first layer) */
.rodo-cc-overlay {
	position: fixed;
	inset: 0;
	z-index: var(--rodo-cc-z);
	background: var(--rodo-cc-overlay, rgba(8, 12, 22, 0.5));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.rodo-cc-overlay.rodo-cc-overlay-blur {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.rodo-cc-overlay .rodo-cc-banner {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	transform: translateY(16px) scale(0.98);
}

.rodo-cc-overlay .rodo-cc-banner.rodo-cc-in {
	transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------- *
 * Entrance animation variants (slide is the default behaviour above)
 * --------------------------------------------------------------------- */
.rodo-cc-anim-fade.rodo-cc-banner,
.rodo-cc-anim-fade.rodo-cc-banner.rodo-cc-in,
.rodo-cc-overlay .rodo-cc-banner.rodo-cc-anim-fade,
.rodo-cc-overlay .rodo-cc-banner.rodo-cc-anim-fade.rodo-cc-in {
	transform: none;
}

.rodo-cc-anim-none.rodo-cc-banner {
	transition: none !important;
	transform: none;
}
.rodo-cc-anim-none.rodo-cc-banner.rodo-cc-in,
.rodo-cc-overlay .rodo-cc-banner.rodo-cc-anim-none,
.rodo-cc-overlay .rodo-cc-banner.rodo-cc-anim-none.rodo-cc-in {
	transform: none;
}

/* Keep horizontally-centred positions centred under fade/none. */
.rodo-cc-anim-fade.rodo-cc-pos-bottom-center,
.rodo-cc-anim-fade.rodo-cc-pos-bottom-center.rodo-cc-in,
.rodo-cc-anim-none.rodo-cc-pos-bottom-center,
.rodo-cc-anim-none.rodo-cc-pos-bottom-center.rodo-cc-in,
.rodo-cc-anim-fade.rodo-cc-pos-top,
.rodo-cc-anim-fade.rodo-cc-pos-top.rodo-cc-in,
.rodo-cc-anim-none.rodo-cc-pos-top,
.rodo-cc-anim-none.rodo-cc-pos-top.rodo-cc-in {
	transform: translateX(-50%);
}

/* --------------------------------------------------------------------- *
 * Banner content
 * --------------------------------------------------------------------- */

.rodo-cc-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.rodo-cc-logo {
	max-height: var(--rodo-cc-logo-h, 40px);
	width: auto;
	display: block;
}

.rodo-cc-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	color: var(--rodo-cc-text);
	letter-spacing: -0.01em;
}

.rodo-cc-body {
	font-size: 13.5px;
	color: var(--rodo-cc-muted);
	margin: 0 0 14px;
}

.rodo-cc-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0 0 14px;
}

.rodo-cc-link {
	color: var(--rodo-cc-accent);
	font-size: 12.5px;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.rodo-cc-link:hover,
.rodo-cc-link:focus-visible {
	border-bottom-color: currentColor;
}

.rodo-cc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

/* --------------------------------------------------------------------- *
 * Buttons
 * --------------------------------------------------------------------- */

.rodo-cc-btn {
	appearance: none;
	border: 1px solid transparent;
	border-radius: calc(var(--rodo-cc-radius) * 0.6);
	padding: 10px 18px;
	font-size: 13.5px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
	line-height: 1.2;
	white-space: nowrap;
}

.rodo-cc-btn:active { transform: translateY(1px); }

.rodo-cc-btn-accent {
	background: var(--rodo-cc-accent);
	color: var(--rodo-cc-accent-text);
	box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--rodo-cc-accent) 70%, transparent);
	flex: 1 1 auto;
}

.rodo-cc-btn-accent:hover {
	background: color-mix(in srgb, var(--rodo-cc-accent) 88%, #fff);
}

.rodo-cc-btn-ghost {
	background: var(--rodo-cc-secondary);
	color: var(--rodo-cc-text);
	border-color: var(--rodo-cc-border);
	flex: 1 1 auto;
}

.rodo-cc-btn-ghost:hover {
	background: color-mix(in srgb, var(--rodo-cc-secondary) 80%, var(--rodo-cc-text));
}

/* Equal-weight reject: a solid, prominent secondary action (compliance). */
.rodo-cc-btn-secondary {
	background: var(--rodo-cc-secondary);
	color: var(--rodo-cc-text);
	border-color: var(--rodo-cc-border);
	font-weight: 600;
	flex: 1 1 auto;
}

.rodo-cc-btn-secondary:hover {
	background: color-mix(in srgb, var(--rodo-cc-secondary) 72%, var(--rodo-cc-text));
}

/* When equal weight is on, accept and reject share the row evenly. */
.rodo-cc-equal .rodo-cc-btn-accent,
.rodo-cc-equal .rodo-cc-btn-secondary {
	flex: 1 1 0;
}

.rodo-cc-btn-link {
	background: transparent;
	color: var(--rodo-cc-muted);
	padding-left: 8px;
	padding-right: 8px;
}

.rodo-cc-btn-link:hover {
	color: var(--rodo-cc-text);
}

.rodo-cc-btn:focus-visible,
.rodo-cc-cookies-toggle:focus-visible,
.rodo-cc-link:focus-visible,
.rodo-cc-floating:focus-visible,
.rodo-cc-x:focus-visible {
	outline: 2px solid var(--rodo-cc-accent);
	outline-offset: 2px;
}

/* Close (X) */
.rodo-cc-x {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	color: var(--rodo-cc-muted);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	border-radius: 8px;
}

.rodo-cc-x:hover {
	color: var(--rodo-cc-text);
	background: var(--rodo-cc-secondary);
}

/* --------------------------------------------------------------------- *
 * Preferences modal
 * --------------------------------------------------------------------- */

.rodo-cc-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: calc(var(--rodo-cc-z) + 1);
	background: rgba(8, 12, 22, 0.66);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	transition: opacity 0.28s ease;
}

.rodo-cc-modal-overlay.rodo-cc-in { opacity: 1; }

.rodo-cc-modal-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(640px, 100%);
	max-height: calc(100vh - 32px);
	overflow: hidden;
	background: var(--rodo-cc-bg);
	color: var(--rodo-cc-text);
	border: 1px solid var(--rodo-cc-border);
	border-radius: var(--rodo-cc-radius);
	box-shadow: var(--rodo-cc-shadow);
	padding: 26px 26px 22px;
	transform: translateY(14px) scale(0.99);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	line-height: 1.5;
}

/* Only the category list scrolls when the viewport is short; the title and
 * action buttons stay visible so nothing needs scrolling on desktop. */
.rodo-cc-modal-panel .rodo-cc-cats {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.rodo-cc-modal-panel .rodo-cc-actions-modal {
	flex: 0 0 auto;
}

.rodo-cc-modal-overlay.rodo-cc-in .rodo-cc-modal-panel {
	transform: translateY(0) scale(1);
}

.rodo-cc-modal-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 36px 8px 0;
	letter-spacing: -0.01em;
}

.rodo-cc-modal-body {
	font-size: 13.5px;
	color: var(--rodo-cc-muted);
	margin: 0 0 16px;
}

.rodo-cc-cats {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 16px 0 20px;
}

.rodo-cc-cat {
	background: var(--rodo-cc-secondary);
	border: 1px solid var(--rodo-cc-border);
	border-radius: calc(var(--rodo-cc-radius) * 0.7);
	padding: 14px 16px;
}

.rodo-cc-cat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.rodo-cc-cat-title {
	font-size: 14.5px;
	font-weight: 600;
}

.rodo-cc-cat-desc {
	font-size: 12.5px;
	color: var(--rodo-cc-muted);
	margin: 8px 0 0;
}

.rodo-cc-cat-state {
	font-size: 11.5px;
	font-weight: 600;
	color: color-mix(in srgb, var(--rodo-cc-accent) 70%, var(--rodo-cc-text));
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

/* Toggle switch */
.rodo-cc-switch {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	cursor: pointer;
}

.rodo-cc-toggle-input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.rodo-cc-switch-track {
	width: 42px;
	height: 24px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--rodo-cc-text) 22%, transparent);
	position: relative;
	transition: background 0.2s ease;
	flex: 0 0 auto;
	pointer-events: none;
}

.rodo-cc-switch-track::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	transition: transform 0.2s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.rodo-cc-toggle-input:checked + .rodo-cc-switch-track {
	background: var(--rodo-cc-accent);
}

.rodo-cc-toggle-input:checked + .rodo-cc-switch-track::after {
	transform: translateX(18px);
}

.rodo-cc-toggle-input:focus-visible + .rodo-cc-switch-track {
	outline: 2px solid var(--rodo-cc-accent);
	outline-offset: 2px;
}

/* Cookie list */
.rodo-cc-cookies-toggle {
	margin-top: 10px;
	background: transparent;
	border: none;
	color: var(--rodo-cc-accent);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	padding: 2px 0;
	font-family: inherit;
}

.rodo-cc-cookies-toggle:hover { text-decoration: underline; }

.rodo-cc-cookies {
	margin-top: 10px;
	overflow-x: auto;
}

.rodo-cc-cookie-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 11.5px;
}

.rodo-cc-cookie-table th,
.rodo-cc-cookie-table td {
	text-align: left;
	padding: 6px 8px;
	border-bottom: 1px solid var(--rodo-cc-border);
	vertical-align: top;
}

.rodo-cc-cookie-table th {
	color: var(--rodo-cc-muted);
	font-weight: 600;
	white-space: nowrap;
}

.rodo-cc-cookie-table td:first-child {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	color: var(--rodo-cc-text);
}

.rodo-cc-actions-modal {
	justify-content: flex-end;
	border-top: 1px solid var(--rodo-cc-border);
	padding-top: 16px;
}

/* --------------------------------------------------------------------- *
 * Floating re-open button
 * --------------------------------------------------------------------- */

.rodo-cc-floating {
	position: fixed;
	bottom: 16px;
	z-index: calc(var(--rodo-cc-z) - 1);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--rodo-cc-border);
	background: var(--rodo-cc-bg);
	color: var(--rodo-cc-accent);
	box-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.rodo-cc-floating-left { left: 16px; }
.rodo-cc-floating-right { right: 16px; }

/* Text / icon+text variants are pills, not circles. */
.rodo-cc-floating-style-text,
.rodo-cc-floating-style-both {
	width: auto;
	height: auto;
	border-radius: 999px;
	padding: 10px 16px;
	gap: 8px;
	color: var(--rodo-cc-text);
}

.rodo-cc-floating-text {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	line-height: 1;
}

.rodo-cc-floating:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.55);
}

.rodo-cc-floating-icon {
	display: flex;
	width: 22px;
	height: 22px;
}

/* --------------------------------------------------------------------- *
 * Blocked YouTube placeholder
 * --------------------------------------------------------------------- */

.rodo-cc-yt {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 180px;
	background:
		linear-gradient(135deg, var(--rodo-cc-secondary), var(--rodo-cc-bg));
	border: 1px solid var(--rodo-cc-border);
	border-radius: calc(var(--rodo-cc-radius) * 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rodo-cc-text);
	overflow: hidden;
}

.rodo-cc-yt-inner {
	text-align: center;
	padding: 20px;
	max-width: 420px;
}

.rodo-cc-yt-text {
	font-size: 13px;
	color: var(--rodo-cc-muted);
	margin: 0 0 14px;
}

.rodo-cc-yt-frame {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* --------------------------------------------------------------------- *
 * Utilities
 * --------------------------------------------------------------------- */

body.rodo-cc-no-scroll {
	overflow: hidden;
}

/* Respect reduced-motion: no slides, just fades. */
@media (prefers-reduced-motion: reduce) {
	.rodo-cc-banner,
	.rodo-cc-modal-panel,
	.rodo-cc-modal-overlay,
	.rodo-cc-floating,
	.rodo-cc-btn,
	.rodo-cc-switch-track,
	.rodo-cc-switch-track::after {
		transition: none !important;
	}
	.rodo-cc-banner { transform: none !important; }
	.rodo-cc-pos-bottom-center { transform: translateX(-50%) !important; }
	.rodo-cc-pos-top { transform: translateX(-50%) !important; }
	.rodo-cc-layout-bar { transform: translateX(-50%) !important; }
}

/* Graceful fallback where color-mix is unsupported. */
@supports not (background: color-mix(in srgb, #000 50%, #fff)) {
	#rodo-cc-root {
		--rodo-cc-muted: #aab4c6;
		--rodo-cc-border: rgba(230, 236, 245, 0.16);
	}
}

/* ===================================================================== *
 * Shortcode output: cookie-policy table + manage-consent button.
 * These render inside normal page content (not the banner), so they use
 * content colours and only borrow the accent for the action button.
 * ===================================================================== */
.rodo-cc-cookie-policy {
	margin: 1.5em 0;
}

.rodo-cc-ct-section {
	margin: 0 0 1.75em;
}

.rodo-cc-ct-title {
	margin: 0 0 .35em;
}

.rodo-cc-ct-desc {
	margin: 0 0 .75em;
	opacity: .85;
}

.rodo-cc-ct-empty {
	font-style: italic;
	opacity: .7;
}

.rodo-cc-cookie-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .95em;
}

.rodo-cc-cookie-table caption {
	text-align: left;
	font-weight: 600;
	padding-bottom: .4em;
}

.rodo-cc-cookie-table th,
.rodo-cc-cookie-table td {
	text-align: left;
	padding: .55em .7em;
	border: 1px solid rgba(127, 127, 127, .28);
	vertical-align: top;
}

.rodo-cc-cookie-table thead th {
	background: rgba(127, 127, 127, .1);
	font-weight: 600;
}

.rodo-cc-cookie-table code {
	font-size: .92em;
	word-break: break-word;
}

/* Manage-consent button (footer / inline link). */
.rodo-cc-manage-consent {
	display: inline-block;
	cursor: pointer;
	font: inherit;
	line-height: 1.2;
	padding: .55em 1.1em;
	border: 1px solid var(--rodo-cc-accent, #2f6df6);
	border-radius: calc(var(--rodo-cc-radius, 16px) / 2);
	background: var(--rodo-cc-accent, #2f6df6);
	color: var(--rodo-cc-accent-text, #fff);
	transition: opacity .15s ease;
}

.rodo-cc-manage-consent:hover,
.rodo-cc-manage-consent:focus-visible {
	opacity: .88;
}

.rodo-cc-manage-consent:focus-visible {
	outline: 2px solid var(--rodo-cc-accent, #2f6df6);
	outline-offset: 2px;
}

/* Placeholder space for an auto-blocked third-party iframe (no src yet). */
.rodo-cc-blocked-frame {
	min-height: 60px;
	background: repeating-linear-gradient(
		45deg,
		rgba(127, 127, 127, .07),
		rgba(127, 127, 127, .07) 10px,
		rgba(127, 127, 127, .12) 10px,
		rgba(127, 127, 127, .12) 20px
	);
	border: 1px dashed rgba(127, 127, 127, .35);
}

/* Responsive: stack the cookie table into labelled rows on narrow screens. */
@media (max-width: 600px) {
	.rodo-cc-cookie-table,
	.rodo-cc-cookie-table thead,
	.rodo-cc-cookie-table tbody,
	.rodo-cc-cookie-table tr,
	.rodo-cc-cookie-table th,
	.rodo-cc-cookie-table td {
		display: block;
	}
	.rodo-cc-cookie-table thead {
		position: absolute;
		left: -9999px;
	}
	.rodo-cc-cookie-table tr {
		margin-bottom: .75em;
		border: 1px solid rgba(127, 127, 127, .28);
	}
	.rodo-cc-cookie-table td {
		border: none;
		border-bottom: 1px solid rgba(127, 127, 127, .18);
		padding-left: 42%;
		position: relative;
	}
	.rodo-cc-cookie-table td::before {
		content: attr(data-label);
		position: absolute;
		left: .7em;
		top: .55em;
		width: 38%;
		font-weight: 600;
		opacity: .8;
	}
}

/* ===================================================================== *
 * Save-confirmation toast
 * ===================================================================== */
.rodo-cc-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translate(-50%, 16px);
	z-index: calc(var(--rodo-cc-z) + 1);
	max-width: min(420px, calc(100vw - 32px));
	padding: 12px 18px;
	border-radius: calc(var(--rodo-cc-radius, 16px) / 1.6);
	background: var(--rodo-cc-bg);
	color: var(--rodo-cc-text);
	border: 1px solid var(--rodo-cc-border);
	box-shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.55);
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	opacity: 0;
	transition: opacity 0.28s ease, transform 0.28s ease;
	pointer-events: none;
}

.rodo-cc-toast::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	vertical-align: -3px;
	border-radius: 50%;
	background: var(--rodo-cc-accent);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat;
}

.rodo-cc-toast-in {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
	.rodo-cc-toast {
		transition: opacity 0.2s ease;
		transform: translate(-50%, 0);
	}
}
