.yew-theme-location--header[data-yew-sticky-header].is-sticky {
	animation: yew-sticky-header-in var(--yew-sticky-duration, 300ms) ease both;
	background: var(--yew-sticky-background, transparent);
	box-shadow: var(--yew-sticky-shadow, 0 8px 24px rgba(0, 0, 0, .12));
	inset: 0 0 auto;
	position: fixed;
	width: 100%;
	z-index: 99990;
}

body.admin-bar .yew-theme-location--header[data-yew-sticky-header].is-sticky { top: 32px; }

@keyframes yew-sticky-header-in {
	from { opacity: 0; transform: translateY(-100%); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 782px) {
	body.admin-bar .yew-theme-location--header[data-yew-sticky-header].is-sticky { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
	.yew-theme-location--header[data-yew-sticky-header].is-sticky { animation: none; }
}
