html.fennec-ann-off .fennec-ann {
	display: none !important;
}

.fennec-ann {
	--fennec-ann-bg: #fa6500;
	--fennec-ann-fg: #fff;
	--fennec-ann-gap: var(--fennec-ann-gap-set, 3.5rem);
	background: var(--fennec-ann-bg);
	color: var(--fennec-ann-fg);
	font-family: var(--wp--preset--font-family--heading, inherit);
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.35;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.fennec-ann.is-light {
	box-shadow: inset 0 -1px 0 rgba(89, 66, 56, 0.16);
}

.fennec-ann__inner {
	align-items: center;
	display: flex;
	gap: 0.8rem;
	margin-inline: auto;
	min-height: 44px;
	padding-block: 0.35rem;
	width: min(100% - 2.4rem, 1240px);
}

.fennec-ann__icon {
	align-items: center;
	display: inline-flex;
	flex: none;
	opacity: 0.92;
}

.fennec-ann__icon svg {
	display: block;
	height: 18px;
	width: 18px;
}

.fennec-ann__icon svg [stroke]:not([stroke="none"]) { stroke: currentColor; }
.fennec-ann__icon svg [fill]:not([fill="none"]) { fill: currentColor; }

.fennec-ann__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.fennec-ann__track {
	display: flex;
}

.fennec-ann__seq {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	row-gap: 0.2rem;
}

.fennec-ann__msg {
	align-items: center;
	display: inline-flex;
	gap: 0.45rem;
}

.fennec-ann__msg::before {
	background: currentColor;
	border-radius: 50%;
	content: "";
	flex: none;
	height: 5px;
	margin-inline: calc(var(--fennec-ann-gap) / 2) max(0rem, calc(var(--fennec-ann-gap) / 2 - 0.45rem));
	opacity: 0.45;
	width: 5px;
}

.fennec-ann__seq > .fennec-ann__msg:first-child::before {
	display: none;
}

.fennec-ann.is-ready[data-mode="ticker"]:not(.is-still) .fennec-ann__seq > .fennec-ann__msg:first-child::before {
	display: block;
}

.fennec-ann.is-ready[data-mode="rotate"] .fennec-ann__msg::before,
.fennec-ann.is-ready[data-mode="static"] .fennec-ann__msg::before {
	display: none;
}

.fennec-ann a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}

.fennec-ann a:hover {
	text-decoration-thickness: 2.5px;
}

.fennec-ann__cta {
	align-items: center;
	display: inline-flex;
	font-weight: 600;
	gap: 0.28rem;
	white-space: nowrap;
}

.fennec-ann__link {
	align-items: center;
	display: inline-flex;
	gap: 0.4rem;
}

.fennec-ann__arrow {
	flex: none;
	height: 15px;
	transition: transform 0.22s ease;
	width: 15px;
}

.fennec-ann a:hover .fennec-ann__arrow {
	transform: translateX(3px);
}

.fennec-ann.is-ready[data-mode="ticker"]:not(.is-still) .fennec-ann__track {
	animation: fennec-ann-marquee var(--fennec-ann-dur, 30s) linear infinite;
	width: max-content;
	will-change: transform;
}

.fennec-ann.is-ready[data-mode="ticker"]:not(.is-still) .fennec-ann__seq {
	flex: none;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.fennec-ann.is-ready[data-mode="ticker"]:hover .fennec-ann__track,
.fennec-ann.is-ready[data-mode="ticker"]:focus-within .fennec-ann__track,
.fennec-ann.is-paused .fennec-ann__track {
	animation-play-state: paused;
}

@keyframes fennec-ann-marquee {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(calc(-1 * var(--fennec-ann-shift, 50%)), 0, 0); }
}

.fennec-ann.is-still .fennec-ann__track {
	animation: none;
	width: 100%;
}

.fennec-ann.is-still .fennec-ann__seq {
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.fennec-ann.is-ready[data-mode="rotate"] .fennec-ann__msg {
	display: none;
}

.fennec-ann.is-ready[data-mode="rotate"] .fennec-ann__msg.is-shown {
	animation: fennec-ann-swap 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
	display: inline-flex;
}

.fennec-ann.is-ready[data-mode="rotate"] .fennec-ann__msg.is-leaving {
	animation: fennec-ann-swap-out 0.28s ease both;
	display: inline-flex;
}

.fennec-ann.is-ready[data-mode="static"] .fennec-ann__msg:not(:first-child) {
	display: none;
}

@keyframes fennec-ann-swap {
	from { opacity: 0; transform: translateY(7px); }
	to { opacity: 1; transform: none; }
}

@keyframes fennec-ann-swap-out {
	from { opacity: 1; transform: none; }
	to { opacity: 0; transform: translateY(-7px); }
}

.fennec-ann .fennec-ann__x {
	align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255, 255, 255, 0.16);
	background: color-mix(in srgb, currentColor 16%, transparent);
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	box-sizing: border-box;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	flex: none;
	font-size: 0;
	height: 30px;
	justify-content: center;
	line-height: 0;
	margin: 0;
	min-height: 0;
	min-width: 0;
	opacity: 0.85;
	padding: 0;
	place-items: center;
	transition: background-color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
	width: 30px;
}

.fennec-ann .fennec-ann__x svg {
	display: block;
	flex: none;
	height: 15px;
	margin: 0;
	width: 15px;
}

.fennec-ann .fennec-ann__x:hover {
	background: rgba(255, 255, 255, 0.3);
	background: color-mix(in srgb, currentColor 28%, transparent);
	opacity: 1;
	transform: rotate(90deg);
}

.fennec-ann__x:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.fennec-ann.is-arriving {
	animation: fennec-ann-drop 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes fennec-ann-drop {
	from { clip-path: inset(0 0 100% 0); opacity: 0; }
	to { clip-path: inset(0 0 0 0); opacity: 1; }
}

.fennec-ann.is-going {
	overflow: hidden;
	transition: height 0.36s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
}

.fennec-ann.is-going .fennec-ann__inner {
	transform: translateY(-6px);
	transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.fennec-ann--bottom {
	bottom: 0;
	box-shadow: 0 -14px 34px -22px rgba(45, 28, 20, 0.75);
	left: 0;
	position: fixed;
	right: 0;
	z-index: 45;
}

.fennec-ann--bottom.is-arriving {
	animation: fennec-ann-rise 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes fennec-ann-rise {
	from { opacity: 0; transform: translateY(100%); }
	to { opacity: 1; transform: none; }
}

body.fennec-ann-header .fennec-head__mobile {
	top: calc(var(--fennec-abar, 0px) + var(--fennec-ann-h, 0px));
}

body.fennec-ann-header [id] {
	scroll-margin-top: calc(90px + var(--fennec-abar, 0px) + var(--fennec-ann-h, 0px));
}

body.fennec-ann-bottom {
	padding-bottom: var(--fennec-ann-h, 0px);
}

body.fennec-ann-bottom .fennec-totop {
	bottom: calc(1.1rem + var(--fennec-ann-h, 0px));
}

@media (max-width: 700px) {
	.fennec-ann {
		--fennec-ann-gap: calc(var(--fennec-ann-gap-set, 3.5rem) * 0.8);
		font-size: 0.86rem;
	}

	.fennec-ann__inner {
		gap: 0.6rem;
		min-height: 40px;
		width: min(100% - 1.6rem, 1240px);
	}

	.fennec-ann__icon svg {
		height: 16px;
		width: 16px;
	}

	.fennec-ann .fennec-ann__x {
		height: 28px;
		width: 28px;
	}

	.fennec-ann.is-still .fennec-ann__seq {
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fennec-ann.is-arriving,
	.fennec-ann.is-ready[data-mode="rotate"] .fennec-ann__msg.is-shown,
	.fennec-ann.is-ready[data-mode="rotate"] .fennec-ann__msg.is-leaving {
		animation: none;
	}

	.fennec-ann .fennec-ann__track {
		animation: none !important;
	}

	.fennec-ann .fennec-ann__x:hover {
		transform: none;
	}

	.fennec-ann.is-going,
	.fennec-ann.is-going .fennec-ann__inner {
		transition-duration: 0.01ms;
	}
}

@media print {
	.fennec-ann {
		display: none;
	}
}
