@charset "utf-8";

:root {
	--siteBgColor: #fff;
	--topContentBgColor: #fff;

	--footerBgColor: #e9e9e9;
	--footerFontColor: #000;
	--footerFontColorActive: #aaa;
	--footerFontSize: 12px;

	--acceptFontColor: #000;
	--acceptFontSize: 14px;
	--acceptButtonBgColor: rgba(234, 84, 19, 1);
	--acceptButtonBgColorActive: rgba(234, 84, 19, 0);
}

body {
	background: var(--siteBgColor) !important;
}



.topContent {
	width: 100%; height: 50px; background-color: var(--topContentBgColor); box-sizing: border-box;
}
.topContent > div {
	width: 100%; height: 90px; margin: 0; background-color: var(--topContentBgColor); position: fixed; z-index: 5; left: 50%; transform: translate(-50%, 0); box-sizing: border-box;
	display: flex; flex-flow: row nowrap; align-items: flex-start; justify-content: center;
	transition: opacity 0.3s ease-in, box-shadow 0.3s ease-in, height 0.3s ease-in; box-shadow: 0 1px 4px -2px #fff; opacity: 1;
}
.topContent.onload > div {
	opacity: 0;
}
.topContent.hide > div {
	box-shadow: 0 1px 4px -2px #ccc; height: 50px;
}
.header {
	width: 100%; margin: 0;
	display: flex; flex-flow: row nowrap; align-items: flex-start; justify-content: center;
}
.header > .logo {
	width: 200px; margin: 20px 20px 0 30px;
	transition: opacity 0.3s ease-in, width 0.3s ease-in; opacity: 1;
}
.topContent.hide > div > .header > .logo {
	width: 120px; margin: 5px 10px 5px 30px;
}
.header > .logo:hover {
	opacity: 0.5;
}
.header > .logo img {
	width: 100%;
}
.header > .menu {
  height: 50px; flex: 1; margin: 10px 40px 0 0;
	display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
	transition: height 0.3s ease-in, margin 0.3s ease-in;
}
.topContent.hide > div > .header > .menu {
	height: 45px; margin: 0 20px 0 0;
}
.header > .icons {
	width: 200px; margin: 22px 0 0 20px;
	display: flex; flex-flow: row nowrap; align-items: center; justify-content: center;
	transition: height 0.3s ease-in, margin 0.3s ease-in;
}
.topContent.hide > div > .header > .icons {
	margin: 15px 0 0 0;
}
.header > .icons > .search img {
	height: 20px; cursor: pointer;
	transition: filter 0.3s ease-in;
}
.header > .icons > .search:hover img {
	filter: opacity(.2) drop-shadow(0 0 0 #00fbfe);
}
.header > .icons > .search input {
	color: #000; font-size: 1.2em; background: none; border-bottom: #000 1px solid; border-top: 0; border-left: 0; border-right: 0; outline: 0; box-sizing: border-box;
	width: 160px; height: 20px; line-height: 1em; vertical-align: middle; padding: 0;
	transition: border 0.3s ease-in, color 0.3s ease-in;
}
.header > .icons > .search input:hover {
	border-bottom: #008880 1px solid; color: #008880;
}


.middleContent {
	width: 100%; box-sizing: border-box;
}
/*///// .leftMenu move to menu.css ////////////////*/
.middleContent > div {
	min-height: 800px; margin: 0; padding: 0; box-sizing: border-box; color: var(--footerFontColor); font-size: var(--footerFontSize); line-height: 2em;
	transition: opacity 0.5s 0s ease-in, transform 0.5s 0s ease-in; transform: translate(0, 0); opacity: 1;
}
.middleContent > div > .content {
	flex-grow: 1; margin: 50px 0 20px 0; top: 0;
}
.middleContent.onload > div {
	 opacity: 0;
}
.middleContent.hide > div {
	transform: translate(0, 20px);
}


.footer {
	width: 100%; background-color: var(--footerBgColor); box-sizing: border-box;
}
.footer > div {
	width: 100%; margin: 0 auto; padding: 20px; box-sizing: border-box; color: var(--footerFontColor); font-size: var(--footerFontSize); line-height: 2em;
	display: flex; flex-flow: row nowrap; align-items: flex-start; justify-content: center;
}
.footer.hide > div > div {
	opacity: 1; transform: translate(0, 10px);
}
.footer > div > div {
	flex: 1; padding: 0 20px 0 0; box-sizing: border-box;
	transition: opacity 1s 0s ease-in, transform 1s 0s ease-in; opacity: 1; transform: translate(0, 0);
}
.footer > div > div > div {
	display: block; width: 100%;
}
.footer > div > div > .logo {
	margin: 0 0 10px 0; height: 30px;
}
.footer > div > div > .logo > div {
	display: inline-block; margin: 0 20px 0 0;
}
.footer > div > div > .logo > div img {
	height: 30px;
	transition: opacity 0.3s 0s ease-in; opacity: 1;
}
.footer > div > div > .own > div img {
	height: 35px !important;
}
.footer > div > div > .logo > div img:hover {
	opacity: 0.3;
}
.footer > div > .copyright {
	align-self: flex-end;
}
.footer > div a {
	color: var(--footerFontColor);
}
.footer > div a:hover {
	color: var(--footerFontColorActive);
}
.footer > div > div > .item > div {
	display: inline-block; width: 100px; margin: 0 10px 0 0;
}
.footer > div > .contact img {
	height: 14px; margin: 0 5px 0 0;
}

.acceptCookie {
	position: fixed; z-index: 19; bottom: 0; left: 0; width: 100%; background: var(--footerBgColor); box-sizing: border-box;
	color: var(--acceptFontColor); font-size: var(--acceptFontSize); line-height: 2em;
	display: flex; flex-flow: row nowrap; align-items: flex-start; justify-content: flex-start;
	transition: bottom 0.5s ease-in, opacity 0.5s ease-in; opacity: 1;
}
.acceptCookie.onload,
.acceptCookie.hide {
	opacity: 0; bottom: -50px;
}
.acceptCookie > .text {
	display: inline-block; flex-grow: 1; box-sizing: border-box; padding: 10px;
}
.acceptCookie > .button {
	display: inline-block; width: 110px; box-sizing: border-box; padding: 2px; align-self: center;
}
.acceptCookie > .button > div {
	width: 100px; height: 40px; margin: 0 20px 0 0; background: var(--acceptButtonBgColor); border: var(--acceptButtonBgColor) 3px solid; cursor: pointer;
	color: var(--buttonFontColor); font-size: var(--buttonFontSize); line-height: 1em;
	display: flex; justify-content: center; align-items: center;
	transition: color 0.3s ease-in, background 0.3s ease-in;
}
.acceptCookie > .button > div:hover {
	background: var(--acceptButtonBgColorActive); color: var(--acceptButtonBgColor);
}



.youtubeVideo {
	position: relative; overflow: hidden; max-width: 100%; height: 0; padding-bottom: 56.25%; margin: 40px 20px 0 20px;
}
.youtubeVideo iframe, .youtubeVideo object, .youtubeVideo embed {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

@media only screen and (max-width:960px) {
	.middleContent > div {
		margin: 0;
	}
	.middleContent > div > .content {
		margin: 10px 0 20px 0;
	}
	.header {
		box-shadow: 0 1px 4px -2px #ccc;
	}
	.header > .logo {
		width: 120px; margin: 5px 10px 5px 10px;
	}
	.topContent.hide > div > .header > .logo {
		width: 120px; margin: 5px 10px 5px 10px;
	}
	.header > .menu {
		height: 45px; margin: 0 20px 0 0;
	}
	.header > .icons {
		margin: 15px 20px 0 0; width: auto;
	}
	.topContent > div {
		height: 50px;
	}
	.topContent.hide > div > .header > .icons {
		margin: 15px 20px 0 0; width: auto;
	}
	.header > .icons > .search input {
		width: 100px;
	}
	.footer > div {
		width: 100%;
	}
}

@media only screen and (max-width: 900px) {
	.footer > div {
		flex-flow: row wrap;
	}
	.footer > div > div {
		flex: auto; width: 50%; margin: 0 0 20px 0;
	}
}

@media only screen and (max-width: 540px) {
	.footer > div > div {
		width: 100%;
	}
}
