/**
 * OPRECHT: vaste sitekop op álle pagina's.
 * Dit bestand wordt als laatste geladen (footer), ná theme-CSS en eventuele
 * inline blocks uit pagina-inhoud, zodat position:fixed niet wordt overschreven.
 */
html {
	transform: none !important;
	filter: none !important;
	perspective: none !important;
}
body {
	transform: none !important;
}
html body > header.header.sticky,
html body > header.header {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	height: 60px !important;
	min-height: 60px !important;
	max-height: 60px !important;
	box-sizing: border-box !important;
	z-index: 10050 !important;
	animation: none !important;
	transition: none !important;
	transform: none !important;
	overflow: visible !important;
}
.header.not-fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 60px !important;
	min-height: 60px !important;
	max-height: 60px !important;
}
