body {
	background-color:#ffefcb;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.ani {
	transition-duration:1s;
}

header {
	width:100%;
	max-width:1080px;
	padding:40px;
	position:relative;
	z-index:2;
}

header .logo {
	position:relative;
	float:left;
}

header .wifi {
	position: relative;
	width: 40px;
	float: right;
	padding: 6px 0 0 0;
	margin-right: 50px;
}
header .wifi img {
	width: 100%;
}

header .wifi span {
	position: absolute;
	width: 200px;
	left: -80px;
	top: 50px;
	padding: 10px;
	border: 1px solid black;
	background: #ffefcb;
	text-align: center;
	opacity: 0;
}

header .wifi:hover span {
	opacity: 1;
}

header ul.languages {
	float:right;
	display:flex;
	flex-direction:row;
}

header ul.languages li {
	margin-left:10px;
}

header ul.languages li.active {
	background:#000;
}

header ul.languages li a {
	color:#000;
	width:40px;
	height:40px;
	border:1px solid #000;
	display:flex;
	justify-content:center;
	align-items:center;
	text-transform: uppercase;
	padding-top: 4px;
}

header ul.languages li.active a {
	color:#ffefcb;
}

header nav {
	float:left;
	width:100%;
	padding-top:40px;
}

header nav ul {
	display:flex;
	flex-direction:row;
}

header nav ul li {
	margin-right:40px;
}

header nav ul li:last-child {
	margin-right:0;
}

header nav ul li a {
	color:#000;
	padding-bottom:2px;
	border-bottom:2px solid transparent;
}

header nav ul li a:hover,header nav ul li a.on {
	border-bottom:2px solid #000;
}

header nav ul li.mob_lang_container {
	display:none;
}



section {
	width:100%;
	max-width:1080px;
	padding:0 40px 40px;
	position:relative;
	z-index:1;
}


section.sticker .container {
	border: 1px solid black;
	padding: 35px;
}



section.image {
	display: flex;
	justify-content: center;
}
section.image img {
	display: inline-block;
	max-width:100%;
	max-height: 100%;
	margin: 0 auto;
}
section.image .image_container { 
	width: 100%;
	max-height: 785px;
	text-align: center;
}


section.copy,
section.headline {
	display:flex;
	justify-content:center;
	padding-bottom:20px;
}

section.copy .container,
section.headline .container {
	width:100%;
	max-width:600px;
	position: relative;
}

section.headline h1 span {
	margin-bottom:20px;
	border-bottom:1px solid #000;
	font-size:24px;
	line-height:30px;
	padding-bottom:2px;
}

section.copy p {
	padding-bottom:26px;
}

section.copy p a {
	color:#000;
	border-bottom:1px solid #000;
}

section.teasers {
	display:flex;
	flex-direction:row;
	flex-flow:wrap;
	justify-content:space-between;
	padding-top:40px;
}

section.teasers a.teaser {
	position:relative;
	width:calc((100% - 60px) / 3);
	display:block;
	margin-bottom:20px;
	background:#000;
}

section.teasers .teaser img {
	width:100%;
	opacity:.4;
}

section.teasers .teaser:hover img {
	opacity:1;
}

section.teasers a.teaser .teaser_title {
	position:absolute;
	display:flex;
	justify-content:center;
	align-items:center;
	height:100%;
	width:100%;
	z-index:1;
	color:#ffefcb;
}

section.table {
	display:flex;
	justify-content:center;
	padding-bottom:20px;
}

section.table .container {
	width:100%;
	max-width:600px;
}

section.table .row {
	margin-bottom:20px;
	display:flex;
	flex-direction:row;
	justify-content: space-between;
	position: relative;
}

section.table .row.gap {
	padding-top:0px;
	margin-bottom:10px;
}

section.table .row .column_text {
	max-width: 80%;
	z-index: 1;
	position: relative;
	background-color:#ffefcb;
	padding-right: 10px;	
}

section.table .row .column_text span {
	display: inline;
}

.id_1031 section.table:nth-child(10) .row:nth-child(1) {
	margin: 0 0 0 0;
}


/*
.id_1031 section.table:nth-child(10) .row:nth-child(2) .column_text span {
		font-size: 18px;
	line-height: 22px;
}
*/


section.table .row .column_price {
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	align-self: flex-start;
	background-color:#ffefcb;
	padding-left: 10px;	

}
.column_gap {
	flex-grow:1;
	border-bottom: 1px solid black;
	position: absolute;
	width: 100%;
	top: 17px;
	z-index: -1;
}
section.table .row.gap .column_gap {
	border-bottom: 1px solid transparent;
}





footer {
	width:100%;
	max-width:1080px;
	padding:40px;
	display:flex;
	justify-content:center;
}

footer a {
	color:#000;
	margin:0 10px;
	padding-bottom:2px;
	border-bottom:1px solid #000;
}

@media (max-width: 900px) {
	header nav ul {
		justify-content:space-between;
	}
	
	header nav ul li {
		margin:0;
	}
}

@media (max-width: 800px) {
	header {
		padding:16px;
		position:sticky;
		top:0;
		background-color:#ffefcb;
	}
	
	header .logo img {
		width:180px;
	}
	
	header .wifi {
		margin-right: 20px;
		padding-top: 0;
	}
	
	.btn-menu {
		width:50px;
		height:50px;
		float:right;
		position:relative;
		z-index:100000;
	}
	
	.btn-menu div {
		position:absolute;
		height:3px;
		width:100%;
		background:#000;
	}
	
	.btn-menu div:nth-child(1) {
		top:0;
	}
	
	.btn-menu div:nth-child(2) {
		top:13px;
	}
	
	.btn-menu div:nth-child(3) {
		top:13px;
	}
	
	.btn-menu div:nth-child(4) {
		top:26px;
	}
	
	.btn-menu.on div:nth-child(1),.btn-menu.on div:nth-child(4) {
		width:0;
	}
	
	.btn-menu.on div:nth-child(2) {
		transform:rotate(-45deg);
	}
	
	.btn-menu.on div:nth-child(3) {
		transform:rotate(45deg);
	}
	
	header ul.languages {
		display:none;
	}
	
	header nav {
		display:none;
		position:fixed;
		left:0;
		top:0;
		background:#ffefcb;
		padding:104px 0 0;
		height:100%;
	}
	
	header nav.on {
		display:block;
	}
	
	header nav.on ul {
		flex-direction:column;
		height:100%;
		justify-content:flex-start;
	}
	
	header nav.on ul li {
		padding:16px;
		border-top:1px solid #000;
		text-align:right;
	}
	
	header nav.on ul li.mob_lang_container {
		display:flex;
		flex-direction:row;
		justify-content:flex-end;
		padding:16px 16px 16px 0;
	}
	
	header nav.on ul li.mob_lang_container a {
		padding:18px 16px 14px;
		display:block;
		border:1px solid #000;
		margin-left:10px;
		text-transform: uppercase;
	}
	
	header nav.on ul li.mob_lang_container a.active {
		color:#ffefcb;
		background-color:#000;
	}
	
	header .logo {
		position:relative;
		z-index:100001;
	}
	
	section {
		width:100%;
		max-width:1080px;
		padding:0 16px 16px;
	}
	
	section.sticker .container {
		padding: 15px;
	}
	
	section.slider,section.image {
		margin-bottom:20px;
	}
	
	.bx-wrapper .bx-controls-direction a {
		display:none;
	}
	
	section.teasers a.teaser {
		position:relative;
		width:calc((100% - 16px) / 2);
		display:block;
		margin-bottom:20px;
		background:#000;
	}
	
	section.table .row .column_text {
		max-width: 70%;
	}
	
	section.table .row.gap .column_text {
		max-width: 100%;
	}
	
	.column_gap {
	top: 14px;
}
}