@font-face { font-family: 'Ubuntu'; src: url('font/Ubuntu-Regular.ttf') format('truetype'); }
@font-face { font-family: 'Ubuntu'; src: url('font/Ubuntu-Italic.ttf') format('truetype'); font-style: italic; }
@font-face { font-family: 'Ubuntu'; src: url('font/Ubuntu-Bold.ttf') format('truetype'); font-weight: bold; }
@font-face { font-family: 'Ubuntu-Condensed'; src: url('font/UbuntuCondensed-Regular.ttf') format('truetype'); }

:root {
	--body-shadow-color: rgba(0,0,0,1);
	--duration: 0.3s;
}

html {
	height:100%;
}

body {
	margin:0;
	padding:0;
	width:100%;
	color:#4c4e4f;
	background-color:#C3C3C3;
	font: 16px "Ubuntu", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

body div.shadow {
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--body-shadow-color);
	-webkit-box-shadow: 0 0 400px 600px var(--body-shadow-color);
	-moz-box-shadow: 0 0 400px 600px var(--body-shadow-color);
	box-shadow: 0 0 400px 600px var(--body-shadow-color);
}

.support-button {
	border: 1px solid #ffffff;
	padding:5px 10px 5px 10px;
	border-radius: 18px;
	transition-duration: var(--duration);
}

.support-button:hover {
	color: #ffffff;
	border: 1px solid #60A0E0;
	background-color: #60A0E0;
	transition-duration: var(--duration);
}

div.language-button > a {
	border: 1px solid #ffffff;
	padding:5px 10px 5px 10px;
}
div.language-button > span {
	border: 1px solid #ffffff;
	padding:5px 10px 5px 10px;
	color: #F8AA0A;
	background-color: #ffffff;
}
div.language-button > a:first-child {
	border-radius: 18px 0 0 18px;
}
div.language-button > span:first-child {
	border-radius: 18px 0 0 18px;
}
div.language-button > a:last-child {
	border-radius: 0 18px 18px 0;
}
div.language-button > span:last-child {
	border-radius: 0 18px 18px 0;
}

div.language-button > a:hover {
	color: #F8AA0A;
	background-color: #ffffff;
}

h1 {
	margin: 0;
	color: #fff;
	font-size: 3.2em;
	font-weight:bold;
	-webkit-text-shadow: 0 2px 8px rgba(1,0,0,1);
	-moz-text-shadow: 0 2px 8px rgba(1,0,0,1);
	text-shadow: 0 2px 8px rgba(1,0,0,1);
	padding: 20px 0 0 0;
}

h2 { /* rbox Titel */
	margin: 0;
	line-height: 1.3em;
	font-size: 2em;
	font-weight: bold;
	color: #4A4A4A;
	padding-bottom: 15px;
}

h3 { /* bold only */
	font-weight: normal;
	color: #444749;
	margin: 0;
	padding: 1em 0 0.3em 0;
	font-size: 1em;
	font-weight:bold;
	line-height:1.5em;
}

div.subtitle {
	margin: 10px 0 0 40px;
	width:320px;
	display:inline-block;
	font-size: 1.4em;
	text-align:left;
	color: #fff;
	font-weight:bold;
	-webkit-text-shadow: 0 2px 8px rgba(1,0,0,1);
	-moz-text-shadow: 0 2px 8px rgba(1,0,0,1);
	text-shadow: 0 2px 8px rgba(1,0,0,1);
}

ol, ul, li {
	margin: 0 0 0.7em 0;
	line-height:1.5em;
}

.v-container {
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column; /* vertical */
	align-items: center;
	border: 0 solid transparent;
}

.v-item {
	width:80%;
	min-width:610px; /* übergang zu @media */
	max-width:1000px;
}



header {
	--nav-height:50px;
	height: calc(60px + 100px); /* main + apps-menu */
	border-bottom-color: #979797;
	position:relative; /* overlap menu and apps */
}

header nav {
	position:relative;
	top:0;
	left:0;
	right:0;
	z-index:3;
	height: var(--nav-height);
	max-height: var(--nav-height);
	width: calc(100% - 80px); /* 2x 'padding' abziehen */
	padding: 0 40px;
	border-radius: 0 0 30px 30px;
	border-bottom: 1px solid #979797;
	background-image: linear-gradient(to right, #F8AA0A, #FBC331, #FEDA57);
	background-image: -webkit-linear-gradient(to right, #F8AA0A, #FBC331, #FEDA57);
	background-image: -moz-linear-gradient(to right, #F8AA0A, #FBC331, #FEDA57);
}

header nav > ul {
	float: right;
	margin:14px 0 0 0;
	padding:0;
	list-style-type: none;
}
header nav > ul:first-child {
	float: left;
}

header nav > ul > li {
	float: left;
}

header nav > ul > li > a {
	display: block;
	margin-bottom: -7px;
	padding-right: 18px;
	height: 30px;
	outline: 0;
	color:#ffffff;
	font-weight:bold;
	position: relative;
}
header nav > ul > li:last-of-type > a {
	padding-right: 0;
}
header nav > ul > li > a:hover {
	color: #dddddd;
}

.optional-prefix {
	font-weight:normal;
	color:rgba(255,255,255,0.8);
	font-size:0.8em;
}

.header-wrapper {
	position: relative;
	left:0;
	right:0;
	width:100%; /* 2x 'padding' abziehen */
	margin:0;
	background-color: transparent;

	border-radius: 0 0 30px 30px;
	-webkit-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
	box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
}

.apps-menu-wrapper {
	z-index:2;
	top:-50px; /* Hoehe von main */
	height: 90px;
	padding: 50px 0px 0 0px; /* 50 = Hoehe von main */
}

ul.header-menu {
	position: relative;
	width:100%;
	margin:0;
	background-color: transparent;
	border-radius: 0 0 30px 30px;
	border-bottom: 1px solid #979797;
	list-style-type: none;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
}

ul.apps-menu {
	top:-50px; /* Hoehe von main */
	height: 90px;
	padding: 50px 0px 0 0px; /* 50 = Hoehe von main */
	background-image: linear-gradient(to bottom, rgba(220,220,220,0.9), rgba(230,230,230,0.9));
	background-image: -webkit-linear-gradient(to bottom, rgba(220,220,220,0.9), rgba(230,230,230,0.9));
	background-image: -moz-linear-gradient(to bottom, rgba(220,220,220,0.9), rgba(230,230,230,0.9));
}

ul.header-menu > li {
	line-height:0.9em;
	margin:0;
	background-color:transparent;
	text-align:center;
}
ul.apps-menu > li {
	padding:6px 0 0 0;
	width:85px;
	border-radius: 14px;
}

ul.apps-menu img {
	width:60px;
	height:60px;
	margin:0 auto;
}

ul.header-menu > li > a > div {
	font-family:"Ubuntu-Condensed";
	font-size: 0.95em;
	font-weight:normal;
	color: #4a4a4a;
	padding: 4px 10px 4px 10px;
	border-radius: 14px;
	transition-duration: var(--duration);
}

ul.header-menu > li.disabled > div {
	font-family:"Ubuntu-Condensed";
	font-size: 0.95em;
	font-weight:normal;
	color: #888;
	padding: 4px 10px 4px 10px;
	border-radius: 14px;
}

ul.apps-menu > li:hover {
	background-color: #fff;
	transition-duration: var(--duration);
}
ul.apps-menu > li > a > div {
	padding: 4px 0 4px 0;
}
ul.apps-menu > li.disabled > div {
	padding: 4px 0px 4px 0px;
}

ul.submenu > li.disabled > div,
ul.submenu > li > a > div:hover {
	color: #000;
	background-color: #fff;
	transition-duration: var(--duration);
}

ul.apps-menu > li.selected a div {
	position:relative;
}

ul.apps-menu > li.selected a div:after {
	z-index: 5;
	position: absolute;
	top: 100%;
	left: calc(50% - 10px);
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid rgba(230,230,230,1);
}

.header-submenu-wrapper {
	z-index:1;
	top:-190px; /* Hoehe von main+nav */
	height: 40px;
	padding: 140px 0px 0 0px; /* 140 = Hoehe von main+nav */
}

ul.submenu {
	top:-190px; /* Hoehe von main+nav */
	height: 40px;
	padding: 190px 0 0 0; /* 140 = Hoehe von main+nav */

	background-image: linear-gradient(to bottom, rgba(220,220,220,0.80), rgba(255,255,255,0.80));
	background-image: -webkit-linear-gradient(to bottom, rgba(220,220,220,0.80), rgba(255,255,255,0.80));
	background-image: -moz-linear-gradient(to bottom, rgba(220,220,220,0.80), rgba(255,255,255,0.80));
}

ul.submenu > li {
	padding:11px 4px 0 4px;
	width: auto;
}


footer {
	background-color: transparent;
	border: 0 solid transparent;
	border-top-color: #979797;
	padding: 0;

	display: flex;
	flex-direction: column; /* vertical */
	align-items: center;
	color: #ffffff;
}

footer nav {
	width:calc(100% - 50px); /* 2x 'padding' abziehen */
	border-radius: 30px 30px 0 0;
	background-image: linear-gradient(to right, #F8AA0A, #FBC331, #FEDA57);
	background-image: -webkit-linear-gradient(to right, #F8AA0A, #FBC331, #FEDA57);
	background-image: -moz-linear-gradient(to right, #F8AA0A, #FBC331, #FEDA57);
	-webkit-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
	box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);

	padding: 15px 25px 0 25px;

	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	display: flex;
	flex-wrap: wrap;
}

footer nav div {
	margin-top: 4px;
	padding-right: 24px;
	padding-bottom: 15px;
	font-size: 0.9em;
	font-weight:bold;
}

footer .copyright {
	font-weight:normal;
	font-style: italic;
	padding-right: 0;
}

footer a {
	color: #FFFFFF;
}
footer a:hover,
footer a.active {
	color: #DDDDDD;
	text-decoration:none;
}

a {
	text-decoration: none;
	color:#89180D;
	font-weight:bold;
	-webkit-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-moz-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-ms-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-o-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-webkit-transition: all 0.5s ease;
}

a:hover {
/*	text-decoration: underline;*/
}

a.linkwitharrow {
	padding-top:1.2em;
	padding-bottom:2em;
	display:flex;
	align-items:center;
	justify-content:center;
}
a.linkwitharrow > img {
	width:60px;
	height:60px;
}

.first-rbox-child {
	margin-top:15px;
}

p, strong {
	text-align:left;
	color: #4A4A4A;
	font-size: 1em;
	line-height: 1.5em;
	margin-top:0;
	margin-bottom:0.7em;
}

* {
	-moz-hyphens:manual;
	-ms-hyphens:manual;
	-webkit-hyphens: manual;
	hyphens:manual;
}

p, strong {
	-moz-hyphens:auto;
	-ms-hyphens:auto;
	-webkit-hyphens: auto;
	hyphens:auto;
}

p.small_indent {
	font-size: 0.8em;
	line-height: 1.3em;
	padding-left:40px;
	padding-right:40px;
}

.features-block {
	float:left;
	width: calc(100% - 300px); /* margin 30 */
}

.features-image {
	float:right;
	width: 300px;
	padding: 0;
	margin-left: 0;
	margin-right: -30px; /* Bild hängt halb in Rand */
	margin-bottom: 0;
}
.wide-features-image {
	width: 320px;
	margin-right: -50px; /* Bild hängt halb in Rand */
}

.avatar {
	position: absolute;
	right:0;
	width:265px;
	height:100%;
	padding:0;
	margin:-30px 0 -30px 0;
	background-color:#c6c1be;
	border-radius: 0 30px 30px 0;
}

.avatar-complement {
	width:calc(100% - 245px);
}

.avatar h3 {
	font-weight: bold;
	margin:0 0 0 20px;
	padding-bottom:0;
}

.avatar p {
	margin:0 20px 0 20px;
	-moz-hyphens:manual;
	-ms-hyphens:manual;
	-webkit-hyphens: manual;
	hyphens:manual;
}

.image-overflow-container {
	float:right;
	width: calc(300px + 60px);
	height: 100%;
	margin-right:-60px;
	margin-bottom:-30px;
	overflow: hidden;
}

.image-overflow {
	width: 600px;
	object-fit: cover;
	object-position: 0 0; 
}

.people-image {
	width: 250px;
}

.image-float-left {
	float:left;
	margin-right: 0;
	margin-left: -30px; /* Bild hängt halb in Rand */
}

.block-float-right {
	float:right;
}

.beginner {
	color: #090;
}

.expert {
	background-color:rgba(255,255,255,0.4);
 	border-radius: 15px;
 	padding:10px 10px 10px 10px;
	margin-left: 20%;
	margin-bottom:0.7em;
	color: #666;
	font-style: italic;
	font-size: 0.85em;
}

.smaller {
	font-size: 0.55em;
}

.rbox {
	width:calc(100% - 122px); /* 2x 'padding'+'border' abziehen */
	margin: 10px 0;
	border-radius: 30px;
	padding: 30px 60px;
	overflow: auto; /* captures floating image height */
	border: 1px solid #979797;
	background-image: linear-gradient(to bottom, rgba(255,255,255,0.90), rgba(230,230,230,0.90));
	background-image: -webkit-linear-gradient(to bottom, rgba(255,255,255,0.90), rgba(230,230,230,0.90));
	background-image: -moz-linear-gradient(to bottom, rgba(255,255,255,0.90), rgba(230,230,230,0.90));
	background-clip: padding-box; /* clips 'background-image' to 'border-radius' */
	-webkit-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
	box-shadow: 0 2px 8px 1px rgba(0,0,0,0.5);
}

.rbox-top {
	border-bottom:0;
	padding-bottom:0;
	margin-bottom:0;
	border-radius: 30px 30px 0 0;
	background-image: linear-gradient(to bottom, rgba(255,255,255,0.90), rgba(242,242,242,0.90));
	background-image: -webkit-linear-gradient(to bottom, rgba(255,255,255,0.90), rgba(242,242,242,0.90));
	background-image: -moz-linear-gradient(to bottom, rgba(255,255,255,0.90), rgba(242,242,242,0.90));
}

.rbox-bottom {
	border-top:0;
	margin-top:0;
	padding-top:0;
	border-radius: 0 0 30px 30px;
	-webkit-box-shadow: 0 2px 4px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 2px 4px 1px rgba(0,0,0,0.5);
	box-shadow: 0 2px 4px 1px rgba(0,0,0,0.5);
	background-image: linear-gradient(to bottom, rgba(242,242,242,0.90), rgba(230,230,230,0.90));
	background-image: -webkit-linear-gradient(to bottom, rgba(242,242,242,0.90), rgba(230,230,230,0.90));
	background-image: -moz-linear-gradient(to bottom, rgba(242,242,242,0.90), rgba(230,230,230,0.90));
}

.rboxmargin {
	margin-top:50px;
}

.container-padding {
	padding: 20px 60px;
	margin-top: 40px;
}

.delete-hpadding {
	margin-left:-60px;
	margin-right:-60px;
}

.inlineimage > img {
	clear:both;
	margin-top:20px;
	width:100%;
}

.exclaim { /* muss hinter container-padding stehen */
	color: #fff;
	font-size: 2em;
	font-weight:bold;
	text-align: center;
	margin-top: 0;
	-webkit-text-shadow: 0 2px 8px rgba(1,0,0,0.5);
	-moz-text-shadow: 0 2px 8px rgba(1,0,0,0.5);
	text-shadow: 0 2px 8px rgba(1,0,0,0.5);
}

.termsofuse ol, .termsofuse li {
	margin-bottom: 10px;
	margin-left: 25px;
	list-style-type: lower-alpha;
}

.animated {
	-webkit-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-moz-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-ms-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-o-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
	-webkit-transition: all 0.5s ease;
}


.download_badges {
	margin: 0;
}
.download_badges > ul {
	list-style-type: none;
	display: row;
	float:left;
	margin-right: 20px;
	margin-bottom: 10px;
	padding: 0;
	background-color: transparent;
}

.download_badges > ul > li {
	display: column;
	text-align:left;
	margin-top:5px;
	font-size: 1em;
	font-weight: normal;
	color:#4c4e4f;
}

.store_badge {
	height: 55px;
	margin-top:5px;
}


.container {
	max-width:100%; /* fixes margin:auto */
}


.bg-image-container {
	position:absolute;
	top:-50px;
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column; /* vertical */
	align-items: center;
	border: 0 solid transparent;
}

.bg-image {
	position:absolute;
	top:50px; /* customized per app */
	width:100%;
	max-width:calc(1900px * 1.1); /* customized per app */
	height:calc(1300px * 1.1); /* customized per app */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}


section.headlines {
	position: relative;
	text-align: center;
	height: 550px;
	width:calc(100% - 120px);
	padding-left:60px;
}


section.headlines .badges {
	position:absolute;
	bottom: 0;
	text-align: center;
	width:calc(100% - 60px);
}


@media (max-width: 940px) {
	section.headlines {
		height: 440px;
	}
	h2 {
		font-size: 1.6em;
	}
	.features-block {
		width: calc(100% - 200px); /* margin 20 */
	}
	.features-image {
		margin-right: -20px; /* Bild hängt halb in Rand */
		width: 200px;
	}
	.wide-features-image {
		width: 240px;
		margin-right: -60px; /* Bild hängt halb in Rand */
	}
	.avatar {
		width:200px;
	}
	.avatar-complement {
		width:calc(100% - 180px);
	}

	.image-overflow-container {
		width: calc(200px + 60px);
		height: calc(100% + 20px);
		margin-right:-60px;
		margin-bottom:-20px;
	}
	.image-overflow {
		width: 400px;
	}
	.image-float-left {
		margin-left: -20px; /* Bild hängt halb in Rand */
	}
}

@media (max-width: 680px) {
	h1 {
		font-size: 2.5em;
		padding: 20px 0 0 0;
	}
	h2 {
		font-size: 1.4em;
		margin-top:15px;
	}
	div.subtitle {
		font-size: 1.1em;
	}
	section.headlines {
		height: 420px;
	}
	section.headlines div.badges a {
		line-height:0;
	}
	.v-item {
		min-width:0; /* disable */
		width:90%;
	}

	ul.apps-menu img {
		width:55px;
		height:55px;
	}
	ul.apps-menu > li {
		width:78px;
	}

	ul.submenu > li > a > div {
		padding: 4px 5px 4px 5px;
	}

	.features-block {
		float:none; /* Text umfließt Bild */
		width: auto;
	}
	.block-float-right {
		float:none; /* Text umfließt Bild */
		width: auto;
	}
	.features-image {
		margin-top: 15px;
		margin-left: 15px;
		margin-right: -15px; /* Bild hängt halb in Rand */
		width: 150px;
	}
	.wide-features-image {
		width: 170px;
		margin-right: -35px; /* Bild hängt halb in Rand */
	}
	.avatar {
		width:130px;
	}
	.avatar-complement {
		width:calc(100% - 120px);
	}
	.avatar h3 {
		margin:0 0 0 10px;
	}
	.avatar p {
		margin:0 10px 0 10px;
		-moz-hyphens:manual;
		-ms-hyphens:manual;
		-webkit-hyphens: manual;
		hyphens:manual;
	}
	.image-overflow-container {
		width: calc(150px + 60px);
		height: calc(100% + 20px);
		margin-right:-60px;
		margin-bottom:-20px;
	}
	.image-overflow {
		width: 300px;
	}
	.image-float-left {
		margin-right: 15px;
		margin-left: -15px; /* Bild hängt halb in Rand */
	}
}

@media (max-width: 550px) {
	h1 {
		font-size: 2.2em;
		padding: 20px 0 0 0;
	}
	h2 {
		margin-top:0;
		font-size: 1.4em;
	}
	div.subtitle {
		font-size: 1em;
	}
	header {
		height: calc(60px + 90px); /* main + apps-menu */
	}
	header nav {
		width: calc(100% - 50px); /* 2x 'padding' abziehen */
		padding: 0 25px;
	}
	header nav > ul:first-child li a {
		font-weight: normal;
	}
	header nav > ul > li > a {
		margin-bottom: -7px;
	}
	header nav {
		font-size: 1em;
	}
	.optional-prefix {
		display:none;
	}

	section.headlines {
		height: 400px;
		width:calc(100% - 80px);
		padding-left:40px;
	}
	section.headlines .badges {
		width:calc(100% - 40px);
	}
	.features-image {
		width: 100px;
		margin-left: 10px;
		margin-right: 0;
	}
	.avatar {
		margin:-20px 0 -20px 0;
		width:130px;
	}
	.avatar-complement {
		width:calc(100% - 110px);
	}
	.image-float-left {
		margin-right: 10px;
		margin-left: 0;
	}
	.image-overflow-container {
		width: calc(100px + 30px);
		height: calc(100% + 20px);
		margin-bottom:-20px;
		margin-right:-30px;
	}
	.rbox {
		width:calc(100% - 62px); /* 2x 'padding'+'border' abziehen */
		padding: 20px 30px;
	}
	.container-padding {
		padding: 20px 30px;
	}
	.delete-hpadding {
		margin-left:-30px;
		margin-right:-30px;
	}
	.v-item {
		width:100%;
	}
}

.hamburger {
	display: none;
	margin: 0;
	margin-top: -12px;
	padding: 6px 10px 10px 10px;
	border-radius:8px;
	width: 30px;
	height: 30px;
	background-color: #fff;
}
.hamburger:after,
.hamburger:before,
.hamburger div {
	background-color: #F8AA0A;
	border-radius: 3px;
	content: '';
	display: block;
	height: 5px;
	margin: 5px 0;
	transition: all .2s ease-in-out;
}
.hamburger.show-app-menu:before {
	transform: translateY(10px) rotate(135deg);
}
.hamburger.show-app-menu:after {
	transform: translateY(-10px) rotate(-135deg);
}
.hamburger.show-app-menu div {
	transform: scale(0);
}

.arrow {
	margin-top:24px;
	margin-right:50px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(-45deg);
}

div.hide-submenu > div {
	display: none;
}

/* mobile navigation */
@media (max-width: 510px) {
	header {
		--nav-height:70px;
		height: calc(20px + var(--nav-height) + var(--submenu-height));
	}
	header.show-app-menu {
		--nav-height:110px;
	}
	header nav {
		transition-duration: var(--duration);
	}
	header.show-app-menu nav {
		max-height: var(--nav-height);
		overflow: hidden;
		transition-duration: var(--duration);
	}
	header nav > ul {
		margin:25px 0 0 0;
	}
	div.subtitle {
		width:80%;
	}
	.hamburger {
		display: inline;
	}
	header nav > ul:nth-child(3) {
		display:none;
	}
	header.show-app-menu nav > ul:nth-child(3) {
		margin-top:10px;
		margin-right:65px;
		display:inline;
		float:left;
	}
	header.show-app-menu nav > ul:nth-child(1) {
		margin-right:20px;
	}
	header.show-app-menu nav > ul:nth-child(2) {
		margin-left:50px;
	}

	.apps-menu-wrapper {
		position: absolute;
		top: calc(-1 * var(--nav-height));
		padding-top:var(--nav-height);
		height:auto;

		overflow: hidden;
		max-height: 0;
		transition-duration: var(--duration);
	}
	.apps-menu-wrapper.show-app-menu {
		max-height:500px;
		transition-duration: var(--duration);
	}
	ul.apps-menu {
		top:0;
		padding-top:calc(var(--nav-height) + 20px);
		padding-left:12px;
		padding-right:10px;
		padding-bottom:20px;
		width:calc(100% - 20px);
		height:auto;
		display: flex;
		flex-wrap: wrap;
		background-image: linear-gradient(to bottom, rgba(210,210,210,1), rgba(230,230,230,1));
		background-image: -webkit-linear-gradient(to bottom, rgba(210,210,210,1), rgba(230,230,230,1));
		background-image: -moz-linear-gradient(to bottom, rgba(210,210,210,1), rgba(230,230,230,1));
	}

	.breaker {
		display: block;
		width: 100%;
		height: 0;
	}

	ul.apps-menu > li.selected > div:after {
		display: none;
	}

	ul.apps-menu img {
		width:65px;
		height:65px;
		margin:0 auto;
	}
	ul.apps-menu > li {
		width:90px;
	}

	.header-submenu-wrapper {
		--submenu-height:60px;
		top:0px;
		height:var(--submenu-height);
		padding: 0px 0px 0 0px;
		transition-duration: var(--duration);
	}
	ul.submenu {
		top: -50px;
		padding: calc(50px + var(--submenu-height)) 0 0 0;
		height:324px;
		flex-direction: column; /* vertical */
		justify-content: flex-start;
		background-image: linear-gradient(to bottom right, rgba(200,200,200,0.95), rgba(230,230,230,0.95));
		background-image: -webkit-linear-gradient(to bottom right, rgba(200,200,200,0.95), rgba(230,230,230,0.95));
		background-image: -moz-linear-gradient(to bottom right, rgba(200,200,200,0.95), rgba(230,230,230,0.95));
		transition-duration: var(--duration);
	}
	.toggle-submenu {
		position:absolute;
		top: 0px;
		width: calc(100% - 20px); /* 2x 'padding' abziehen */
		height:var(--submenu-height);
		text-align: right;
		padding: 4px 8px 4px 8px;
/*		background-color:#ff0;*/
		color:#00f;
	}
	ul.submenu > li {
		font-size: 1.2em;
		padding:0 20px 0 20px;
		margin:4px 0 0 0;
		text-align:left;

		max-height:50px;
		transition-duration: var(--duration);
	}
	ul.submenu > li > a > div {
		background-color: #e9e9e9;
		padding: 16px 20px 13px 40px;
	}
	ul.submenu > li.disabled > div {
		padding: 16px 20px 13px 40px;
		transition-duration: var(--duration);
	}
	li > a {
		opacity: 1;
		transition: opacity var(--duration);
	}
	div.hide-submenu > div {
		display: inline;
	}
	div.hide-submenu .arrow {
		margin-top:13px;
		transform: rotate(135deg);
	}

	div.hide-submenu > ul {
		padding: 50px 0 0 0;
		height:calc(var(--submenu-height));
		transition-duration: var(--duration);
	}
	div.hide-submenu > ul > li {
		margin:0;
	}
	div.hide-submenu > ul > li {
		overflow: hidden;
    max-height: 0;
		transition-duration: var(--duration);
	}
	div.hide-submenu > ul > li.disabled  {
    max-height: 60px;
	}
	div.hide-submenu > ul > li.disabled > div {
		margin-top: 6px;
		padding: 16px 20px 13px 40px;
		color: #000;
		background-color: #eee;
		transition-duration: var(--duration);
	}
}

@media (max-width: 370px) {
	h1 {
		font-size: 1.9em;
		padding: 20px 0 0 0;
	}
	h2 {
		font-size: 1.2em;
	}
	section.headlines {
		height: 380px;
		width:calc(100% - 40px);
		padding-left:20px;
	}
	section.headlines .badges {
		width:calc(100% - 20px);
	}
	.avatar {
		margin:-20px 0 -20px 0;
		width:100%;
		height:450px;
		border-radius: 30px 30px 0 0;
	}
	.avatar-complement {
		margin-top:450px;
		width:100%;
	}
	.image-overflow-container {
		width: calc(100px + 20px);
		height: calc(100% + 20px);
		margin-bottom:-20px;
		margin-right:-20px;
	}
	.rbox {
		width:calc(100% - 42px); /* 2x 'padding'+'border' abziehen */
		padding: 20px 20px;
	}
	.container-padding {
		padding: 20px 20px;
	}
	.delete-hpadding {
		margin-left:-20px;
		margin-right:-20px;
	}
}


.aligncenter {
	text-align: center;
}

figcaption {
	text-align: center;
	font-size: 0.8em;
}

.rounded {
	border-radius: 50%;
}

div.online-plus-box {
	margin-top:20px;
	margin-bottom:20px;
	display: table; /* paragraph shall not expand horizontally */
	background-color:rgba(255,255,255,0.4);
 	border-radius: 15px;
 	padding:10px 20px 0px 20px;
}

div.online-plus-box a {
	color: #888;
	text-decoration: underline;
}

div.online-plus-box div {
	font-size:80%;
	color: #888;
	margin-bottom:2px;
}

div.online-plus-table {
	border-bottom:1px solid rgba(0, 0, 0, 0.2);
}

div.testimonial {
	margin-top:20px;
	margin-bottom:0px;
}

div.testimonial > p {
	display: table; /* paragraph shall not expand horizontally */
	background-color:rgba(255,255,255,0.4);
 	border-radius: 15px;
 	padding:10px 10px 10px 10px;
}


.button {
	cursor: pointer;
	color: #fff;
 	width: calc(100% + 24px);
 	margin:0;
	top: 0;
	padding: 12px 30px;
	font: 16px "Ubuntu", Helvetica, Arial, sans-serif;
	font-size: 1em;
	font-weight:bold;
	text-align: center;
 	border-radius: 30px;
	border: 1px solid #979797;
	background-image: linear-gradient(to bottom, #D2D2D2, #9D9D9D);
	background-image: -webkit-linear-gradient(to bottom, #D2D2D2, #9D9D9D);
	background-image: -moz-linear-gradient(to bottom, #D2D2D2, #9D9D9D);
}

.button:active {
	background-image: linear-gradient(to bottom, #9D9D9D, #D2D2D2);
	background-image: -webkit-linear-gradient(to bottom, #9D9D9D, #D2D2D2);
	background-image: -moz-linear-gradient(to bottom, #9D9D9D, #D2D2D2);
}

.buttonred {
	background-image: linear-gradient(to bottom, #D20000, #9D0000);
	background-image: -webkit-linear-gradient(to bottom, #D20000, #9D0000);
	background-image: -moz-linear-gradient(to bottom, #D20000, #9D0000);
}

.buttonred:hover {
	background-image: linear-gradient(to bottom, #ff9000, #ff5000);
	background-image: -webkit-linear-gradient(to bottom, #ff9000, #ff5000);
	background-image: -moz-linear-gradient(to bottom, #ff9000, #ff5000);
}




.slider {
	margin-bottom:15px;
	position: relative;
}

.slider input {
	display: none;
}

.slider-wrapper {
	width: 100%;
	overflow: hidden;
}

.slider-content {
	width: 1000%;
	line-height: 0;
	-webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
	-moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
	transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

/* optimized for n images */
.slider-content-animation {
  animation: scroller 40s infinite;
	animation-direction: normal;
	animation-delay: 0s;
	animation-timing-function: ease-in-out;
}

/* need a step for each slide */
@keyframes scroller {
   0%  { transform: translateX(0); }
   8%  { transform: translateX(0); }
  10%  { transform: translateX(-10%); }
  18%  { transform: translateX(-10%); }
  20%  { transform: translateX(-20%); }
  28%  { transform: translateX(-20%); }
  30%  { transform: translateX(-30%); }
  38%  { transform: translateX(-30%); }
  40%  { transform: translateX(-40%); }
  48%  { transform: translateX(-40%); }
  50%  { transform: translateX(-50%); }
  58%  { transform: translateX(-50%); }
  60%  { transform: translateX(-60%); }
  68%  { transform: translateX(-60%); }
  70%  { transform: translateX(-70%); }
  78%  { transform: translateX(-70%); }
  80%  { transform: translateX(-80%); }
  88%  { transform: translateX(-80%); }
  90%  { transform: translateX(-90%); }
  98%  { transform: translateX(-90%); }
  100% { transform: translateX(-90%); }
}

.slider-content div {
	width: 10%;
	float: left;
	position: relative;
}

.slider-content div img {
	width: 100%;
}

.slider-prev-next-control {
	height: 50px;
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slider-prev-next-control label {
	color:#fff;
	display: none;
	width: 40px;
	height: 40px;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	line-height: 38px;
	font-size: 3em;
	-webkit-text-shadow: 0 2px 8px rgba(1,0,0,1);
	-moz-text-shadow: 0 2px 8px rgba(1,0,0,1);
	text-shadow: 0 2px 8px rgba(1,0,0,1);
}

.slider-prev-next-control label:hover {
	color: #ddd;
}

.slider-dot-control {
	position: absolute;
	width: 100%;
	bottom: 0;
	text-align: center;
}

.slider-dot-control label {
	cursor: pointer;
	border-radius: 5px;
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #999;
	-webkit-box-shadow: 0 0px 2px rgba(255,255,255,1);
	-moz-box-shadow: 0 0px 2px rgba(255,255,255,1);
	box-shadow: 0 0px 2px rgba(255,255,255,1);
	-webkit-transition: all var(--duration);
	-moz-transition: all var(--duration);
	transition: all var(--duration);
}

.slider-dot-control label:hover {
	background: t;
	border-color: #777;
}

#slide1:checked ~ .slider-prev-next-control label:nth-child(2)::after, #slide2:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(5)::after, #slide5:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide2:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(2)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide5:checked ~ .slider-prev-next-control label:nth-child(4)::after, #slide1:checked ~ .slider-prev-next-control label:nth-child(5)::after {
	display: block;
}

#slide1:checked ~ .slider-prev-next-control label:nth-child(2)::after, #slide2:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(5)::after, #slide5:checked ~ .slider-prev-next-control label:nth-child(1)::after {
	content:"◄";
	-moz-transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
	padding-left: 5px;
}

#slide1:checked ~ .slider-prev-next-control label:nth-child(2), #slide2:checked ~ .slider-prev-next-control label:nth-child(3), #slide3:checked ~ .slider-prev-next-control label:nth-child(1), #slide4:checked ~ .slider-prev-next-control label:nth-child(5), #slide5:checked ~ .slider-prev-next-control label:nth-child(1) {
	display: block;
	float: right;
	margin-right: 15px;
}

#slide2:checked ~ .slider-prev-next-control label:nth-child(1), #slide3:checked ~ .slider-prev-next-control label:nth-child(2), #slide4:checked ~ .slider-prev-next-control label:nth-child(3), #slide5:checked ~ .slider-prev-next-control label:nth-child(4), #slide1:checked ~ .slider-prev-next-control label:nth-child(3) {
	display: block;
	float: left;
	margin-left: 15px;
}

#slide2:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(2)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide5:checked ~ .slider-prev-next-control label:nth-child(4)::after, #slide1:checked ~ .slider-prev-next-control label:nth-child(3)::after {
	content:"◄";
	padding-left: 5px;
}

#slide1:checked ~ .slider-dot-control label:nth-child(1), #slide2:checked ~ .slider-dot-control label:nth-child(2), #slide3:checked ~ .slider-dot-control label:nth-child(3), #slide4:checked ~ .slider-dot-control label:nth-child(4), #slide5:checked ~ .slider-dot-control label:nth-child(5) {
	background: #fff;
	-webkit-box-shadow: 0 0px 2px rgba(0,0,0,1);
	-moz-box-shadow: 0 0px 2px rgba(0,0,0,1);
	box-shadow: 0 0px 2px rgba(0,0,0,1);
}

#slide1:checked ~ .slider-wrapper .slider-content {
	margin-left: 0%;
}

#slide2:checked ~ .slider-wrapper .slider-content {
	margin-left: -100%;
}

#slide3:checked ~ .slider-wrapper .slider-content {
	margin-left: -200%;
}

#slide4:checked ~ .slider-wrapper .slider-content {
	margin-left: -300%;
}

#slide5:checked ~ .slider-wrapper .slider-content {
	margin-left: -400%;
}

