
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/


body.home header.entry-header {
	display: none;
}


.site-content {
	width: var(--width);
	margin: 0 auto 40px auto;
}
/*
.site-content .wp-block-mkl-section-block:last-child {
	margin-bottom: -40px;
}
*/

@media ( min-width: 600px ) {
	.site-content {
		max-width: var(--max-width);
	}
}


.site-header ,
.site-footer ,
.content-gap {
	display: none;
}


/*
.site-header {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	background-color: var(--fg-yellow);
}
.site-header div {
	box-sizing: border-box;
}

.header-inner {
	position: relative;
	width: var(--width);
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	align-content: flex-start;
	margin: 0 auto;
}

.logo-container {
	order: 1;
	flex-basis: 15%;
	padding: 0.5em 0;
}

.datelocation-container {
	order: 5;
	flex-basis: 100%;
	color: var(--fg-white);
	padding: 0;
}

.polylang-container {
	order: 2;
	flex-basis: 40%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	color: var(--fg-white);
}

.social-container {
	order: 7;
	flex-basis: 100%;
	color: var(--fg-white);
	padding: 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-end;
}

.trigger-container {
	order: 4;
	flex-basis: 15%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: center;
	color: var(--fg-black);
}

.menu-container {
	order: 6;
	flex-basis: 100%;
}

.ticketbutton-container {
	order: 3;
	flex-basis: 20%;
}

.datelocation-container ,
.social-container ,
.menu-container {
	height: 0;
	line-height: 0;
	overflow: hidden;
	opacity: 1;
	transition: line-height 350ms ease-in-out , padding 350ms ease-in-out , height 350ms ease-in-out , opacity 500ms ease-in-out;
}
.site-header.open .datelocation-container {
	height: auto;
	line-height: 1.5em;
	opacity: 1;
	padding: 1.5em 0 0 0;
}
.site-header.open .social-container {
	height: auto;
	line-height: 1.5;
	opacity: 1;
	padding: 1.5em 0 3em 0;
}
.site-header.open .menu-container {
	height: auto;
	line-height: 1.5;
	opacity: 1;
}


@media ( min-width: 769px ) and ( orientation: landscape ) , ( min-width: 1025px ) {
	
	.site-header {
		position: fixed;
		top: 0;
		z-index: 99;
		background: rgba(0,0,0,0.5);
		transition: background 750ms ease-in-out;
	}
	.site-header.scrolled {
		background: rgba(0,0,0,0.85);
	}
	.header-inner {
		align-items: stretch;
		max-width: var(--max-width);
		margin: 0 auto;
	}

	.logo-container {
		flex-basis: 15%;
		max-width: 180px;
		padding: 0.5em 1em 0 1em;
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		align-items: flex-end;
		background-color: var(--fg-yellow);
	}
	
	.datelocation-container {
		order: 2;
		flex-basis: 35%;
		padding: 0 0 0 2em;
		display: flex;
		flex-flow: column wrap;
		justify-content: center;
		align-items: flex-start;
	}
	.polylang-container {
		order: 3;
		flex-basis: 30%;
	}
	
	.social-container {
		order: 4;
		flex-basis: 20%;
		justify-content: flex-end;
		align-items: center;
	}
	
	.trigger-container {
		order: 9;
		display: none;
	}
	
	.menu-container {
	}
	
	.datelocation-container ,
	.social-container ,
	.menu-container {
		height: auto;
		line-height: 1.5;
		overflow: visible;
		opacity: 1;
		transition: none;
	}
	
}


.site-header a {
	text-decoration: none;
	color: inherit;
	font-weight: inherit;
}

.logo-container img {
	width: 100%;
	height: auto;
}

.polylang-container ul {
	margin: 0;
}
.polylang-container li {
	text-transform: uppercase;
	margin: 0 0 0 10px;
	padding: 0.25em 0;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: var(--font-bold);
}
.polylang-container li:after {
	content: '';
	border-right: 2px solid rgba(255,255,255,0.35);
	margin-left: 13px;
}
.polylang-container li:last-of-type:after {
	content: '';
	border-right: 0px none;
	margin-left: 0;
	display: none;
}
.polylang-container li.current-lang {
	opacity: 0.5;
	text-decoration: underline;
}

.datelocation-container p {
	margin: 0;
	font-size: 1.25em;
	font-weight: var(--font-black);
}

.social-container img.icon {
	display: block;
	margin: 0 0.5em;
	width: 32px;
	height: 0;
	transition: 350ms ease-in-out;
}
.site-header.open img.icon {
	height: auto;
}


@media ( min-width: 769px ) and ( orientation: landscape ) , ( min-width: 1025px ) {

	.datelocation-container p {
		font-size: 0.875em;
	}
	
	.social-container img.icon {
		width: 1rem;
		height: auto;
		transition: none;
	}

}

.site-footer {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0 0 2em 0;
	background: var(--fg-yellow);
}

.footer-inner {
	position: relative;
	width: var(--width);
	max-width: var(--max-width);
	margin: 0 auto;
}
@media ( min-width: 769px ) and ( orientation: landscape ) , ( min-width: 1025px ) {
	.footer-inner {
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: flex-end;
		padding: 1em 0 0 0;
	}
	
	.footer-inner > div {
	}
}

.footer-third {
	display: none;
}
@media ( min-width: 769px ) and ( orientation: landscape ) , ( min-width: 1025px ) {
	.footer-third {
		display: block;
	}
}

.footer-elbhang-image {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}
*/