/* Floating Consent-Reopen (RCB Free Sticky-Ersatz), unten links */
.fd-consent-reopen {
	--fd-consent-reopen-bg: var(--fd-brand-sage-dark, #858a6f);
	--fd-consent-reopen-fg: #ffffff;
	--fd-consent-reopen-hover-bg: var(--fd-brand-sage-mid, #9a9f82);
	--fd-consent-reopen-shadow: 0 2px 8px rgba(26, 29, 21, 0.28);

	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 99990;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--fd-consent-reopen-bg);
	color: var(--fd-consent-reopen-fg);
	box-shadow: var(--fd-consent-reopen-shadow);
	text-decoration: none;
	line-height: 0;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease,
		background-color 0.15s ease,
		box-shadow 0.15s ease;
}

.fd-consent-reopen.is-visible,
.fd-consent-reopen:not([hidden]) {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.fd-consent-reopen[hidden] {
	display: none !important;
}

.fd-consent-reopen:hover,
.fd-consent-reopen:focus-visible {
	background: var(--fd-consent-reopen-hover-bg);
	color: var(--fd-consent-reopen-fg);
	box-shadow: 0 4px 12px rgba(26, 29, 21, 0.32);
	text-decoration: none;
	outline: none;
}

.fd-consent-reopen:focus-visible {
	outline: 2px solid var(--fd-brand-gold, #a07818);
	outline-offset: 3px;
}

.fd-consent-reopen__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
}

.fd-consent-reopen__icon svg {
	display: block;
	width: 22px;
	height: 22px;
}

@media (max-width: 480px) {
	.fd-consent-reopen {
		left: 14px;
		bottom: 14px;
		width: 48px;
		height: 48px;
	}
}
