@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-Medium.ttf') format('truetype'); font-weight: 500; }
@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);
}

.invisible {
	display:none;
}


.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;
	padding: 40px 20px 0 20px;
	color: #fff;
	font-size: 2.6em;
	font-weight:500;
	-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);
}

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

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

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;
	align-items: center;
	border: 0 solid transparent;
}

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

header {
	width: 100%;
	height:auto;
	padding: 0;
	position:fixed;
	top:0;
	z-index:3;
	display: flex;
	flex-direction: column;
	align-items: center;
	--nav-height:50px;
	background-color:rgba(30,30,30,0.3);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	border-bottom: 1px solid #979797;
}

header.show-app-menu {
	--nav-height:200px;
}

header nav > div {
	display:none;
}
header.show-app-menu nav > div {
	padding-top: 20px;
	display: flex;
	width: 100%;
}

.company-submenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-left: 18px;
}
.company-submenu > li:first-of-type {
	margin-right: 18px;
}

header nav {
	position: relative;
	left:0;
	top:0;
	z-index:3;
	height: var(--nav-height);
	max-height: var(--nav-height);
	transition-duration: var(--duration);
}

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

header nav ul > li {
	float: left;
}

header nav ul > li > a {
	display: block;
	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;
}

ul.header-menu {
	position: relative;
	margin:0;
	background-color: transparent;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

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;
	height: 90px;
	border-radius: 14px;
}

ul.apps-menu > li:hover {
	background-color: #666;
	transition-duration: var(--duration);
}

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


ul.header-menu > li > a > div,
ul.submenu > li.disabled > div,
ul.submenu > li > a > div {
	font-family:"Ubuntu-Condensed";
	font-weight:normal;
	color: rgba(255,255,255,0.8);
	padding: 4px 10px 4px 10px;
	border-radius: 14px;
	transition-duration: var(--duration);
}

ul.submenu > li.disabled > div,
ul.submenu > li > a > div:hover {
	color: #000;
	background-color: white;
}
ul.submenu > li > a > div:hover {
	background-color: rgba(255,255,255,0.7);
}

ul.submenu {
	top: 50px;
	display: flex;
	padding: 0;
	flex-direction: row;
	align-items: center;
}

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

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

	display: flex;
	flex-direction: column;
	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: 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, q, strong {
	text-align:left;
	color: #4A4A4A;
	font-size: 1.05em;
	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 */
}

div.box-image {
	width: 100%;
	text-align:center;
	padding:0;
	margin: 0 0 -3px 0;
}
div.box-image img {
	width: 100%;
}

.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 avatar-name {
	display:block;
	padding: 10px 0;
	margin:0;
	font-size: 1.3em;
	font-weight:bold;
	text-align: center;
	color: #444749;
}

.avatar p {
	margin:0 20px 0 20px;
	font-size: 1.1em;
	line-height:1.3em;
	-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;
}

:root {
	--rbox-inset: 30px;
	--gutter: 20px;
}

.rbox {
/*	width:calc(100% - calc(60px * 2 + 2px)); / * 2x 'padding'+'border' abziehen  * / */
	margin: 10px 0;
	border-radius: var(--rbox-inset);
	padding: var(--rbox-inset) 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: var(--rbox-inset) var(--rbox-inset) 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 var(--rbox-inset) var(--rbox-inset);
	-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;
}

.whitebox {
	width:calc(100% - calc(var(--rbox-inset) * 2));
	padding:var(--rbox-inset);
	border-radius: var(--rbox-inset);
	border: 1px solid #979797;
	overflow: hidden;
	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));
	-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);
}

.no-bottom {
	padding-bottom:0;
}

.kachel {
	width:calc((100% - calc(var(--gutter) * 2 + 7px))/3); /* 2*gutter + 6*border 1px */
  margin: 0 0 var(--gutter) 0;
  padding: 0;
}

.kachel2 {
	width:calc((100% - 24px)/2); /* 1*gutter 20px + 4*border 1px */
}

.kachelimage {
	border-radius: var(--rbox-inset);
	border:0;
	overflow: hidden;
}

.delete-hpadding-kachel {
	margin-left:calc(-1 * var(--rbox-inset));
	margin-right:calc(-1 * var(--rbox-inset));
	padding:0;
}

.kachel h3,
.holz h3 {
	font-weight: bold;
	text-align: center;
	font-size: 1.6em;
	margin:0 0 10px 0;
	padding: 0 0 0.3em 0;
}

.title-with-app-icon {
	display:flex;
	flex-direction:column;
	align-items:center;
	gap: 0;
}
.title-with-app-icon > div {
	margin:0 -10px;
	padding: 4px 0;
	color: white;
	font-family:"Ubuntu";
	font-weight:500;
	font-size: 1em;
}
.title-with-app-icon img {
	width:80px;
	height:80px;
	border:1px solid rgba(255,255,255,0.7);
	border-radius: 22px;
}


@media (max-width: 940px) {
	.kachel {
		width:calc((100% - 24px)/2); /* 1*gutter 20px + 4*border 1px */
	}
}
@media (max-width: 550px) {
	.kachel {
		width:100%;
	}
	.kachel2 {
		width:100%;
	}
}

.holz {
	padding:var(--rbox-inset);
	border-radius: var(--rbox-inset);
	overflow: hidden;

	background-image: url('graphics/skat/kachel.png');
	background-size: 100%;
	background-repeat: repeat-y;
	border: 0;
	-webkit-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.7);
	-moz-box-shadow: 0 2px 8px 1px rgba(0,0,0,0.7);
	box-shadow: 0 2px 8px 1px rgba(0,0,0,0.7);
}

.holz p,
.holz h3 {
	color: white;
}

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

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

.inlineimage > img {
	clear:both;
	margin:0;
	width:100%;
}

.exclaim { /* muss hinter container-padding stehen */
	color: #fff;
	font-size: 2em;
	font-weight:500;
	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;
}

.altenburger_badge {
	height: 80px;
	margin-top:-5px;
}

.nav_badge {
	height: 40px;
	margin-top:-8px;
}


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


.bg-image-container {
	position:absolute;
	z-index:-1;
	top:-50px;
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column;
	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;
}


div.headlines {
	position: relative;
	text-align: center;
	height: 580px;
	width:100%;
	padding:0;
	margin-top:0;
}


div.headlines .badges {
	top: 0;
	text-align: center;
	width:calc(100% - 60px);
}


.holz .badges {
	display:flex;
	flex-direction:row;
	justify-content: space-evenly;
	gap:20px;
	flex-wrap: wrap;
}

@media (max-width: 940px) {
	div.headlines {
		height: 510px;
	}
	h2 {
		font-size: 1.6em;
	}
	.exclaim {
		font-size: 1.6em;
	}
	.features-block {
		width: calc(100% - 200px);
	}
	.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 */
	}

	.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.2em;
		padding: 40px 20px 0 20px;
	}
	h2 {
		font-size: 1.5em;
	}
	div.subtitle {
		font-size: 1.1em;
	}
	div.headlines {
		height: 480px;
	}
	div.headlines div.badges a {
		line-height:0;
	}
	.v-item {
		min-width:0; /* disable */
		width:95%;
	}

	ul.submenu > li.disabled > div,
	ul.submenu > li > a > div {
		padding: 4px 6px 4px 6px;
	}

	.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 avatar-name {
		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) {
	:root {
		--rbox-inset:30px;
	}
	h1 {
		padding: 30px 0 0 0;
	}
	div.subtitle {
		font-size: 1em;
	}
	header nav {
		width: calc(100% - 40px); /* 2x 'padding' abziehen */
		padding: 0 25px;
	}
	header.show-app-menu {
		--nav-height:250px;
	}

	header nav > ul > li > a {
		margin-bottom: -7px;
	}
	header nav {
		font-size: 1em;
	}

	div.headlines {
		height: 410px;
		width:calc(100% - 20px);
		padding-left:10px;
	}
	div.headlines .badges {
		width:calc(100% - 40px);
	}
	.features-image {
		width: 100px;
		margin-left: 10px;
		margin-right: 0;
	}
	div.box-image img {
		margin-bottom: -20px;
		margin-top: -10px;
	}
	.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% - calc(var(--rbox-inset) * 2 + 2px)); /* 2x 'padding'+'border' abziehen */
		padding: var(--rbox-inset) var(--rbox-inset);
	}
	.container-padding {
		padding: 20px 15px;
	}
	.delete-hpadding {
		margin-left:-30px;
		margin-right:-30px;
	}
	.v-item {
		width:98%;
	}
}

.hamburger {
	display: inline;
	margin: 0;
	margin-top: -12px;
	padding: 6px 0 10px 0;	/*	padding: 6px 10px 10px 10px;*/
	border-radius:8px;
	width: 30px;
	height: 30px;
	background-color: transparent;
}
.hamburger:after,
.hamburger:before,
.hamburger div {
	background-color: white;
	border-radius: 3px;
	content: '';
	display: block;
	height: 3px;
	margin: 7px 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);
}

@media (max-width: 510px) {
	header.show-app-menu nav {
		max-height: var(--nav-height);
		overflow: hidden;
		transition-duration: var(--duration);
	}
	h1 {
		padding: 30px 0 0 0;
		font-size: 2em;
	}

	div.subtitle {
		width:80%;
	}
	header.show-app-menu nav > ul:nth-child(1) {
		margin-right:20px;
	}
	header.show-app-menu nav > ul:nth-child(2) {
		margin-left:0;
	}

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

	ul.submenu > li {
		padding:11px 1px 0 1px;
	}

	li > a {
		opacity: 1;
		transition: opacity var(--duration);
	}
}

@media (max-width: 410px) {
	h1 {
		font-size: 1.8em;
	}
}

@media (max-width: 370px) {
	:root {
		--rbox-inset:25px;
	}
	h1 {
		font-size: 1.9em;
		padding: 10px 0 0 0;
	}
	h2 {
		font-size: 1.4em;
	}
	.exclaim {
		font-size: 1.4em;
	}
	div.headlines {
		height: 380px;
		width:calc(100% - 40px);
		padding-left:20px;
	}
	div.headlines .badges {
		width:calc(100% - 20px);
	}
	.image-overflow-container {
		width: calc(100px + 20px);
		height: calc(100% + 20px);
		margin-bottom:-20px;
		margin-right:-20px;
	}
	.container-padding {
		padding: 20px 10px;
	}
	.delete-hpadding {
		margin-left:-20px;
		margin-right:-20px;
	}
}

@media (max-width: 350px) {
	.optional-prefix {
		display:none;
	}
}
@media (max-width: 400px) {
	.optional-optional-prefix {
		display:none;
	}
}

.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.8);
}

.testimonial-kachel {
	margin: var(--gutter) 20px 0 20px;
	padding:calc(0.9 * var(--rbox-inset));
	border:0;
	border-radius: calc(0.8 * var(--rbox-inset));
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

q:before {
  content: open-quote;
}

q:after {
  content: close-quote;
}

.testimonial-kachel q,
.testimonial-kachel i,
.testimonial-kachel div {
	font-style:italic;
	color:white;
 	margin:-16px 0;
 	padding:0;
}

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

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


.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 {
	position: relative;
}

.slider input {
	display: none;
}

.slider-wrapper {
	width: 100%;
	overflow: hidden;
	height: auto;
	margin-bottom: -20px;
}

.slider-content {
	width: 1000%;
	-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);
}

.slider-content > div > p
{
	margin:-10px 15px 0 15px;
	text-align:center;
}

/* optimized for n images */
.slider-content-animation {
  animation: scroller 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);

	transform: translateX(-20%);
	animation-direction: normal;

	animation-iteration-count: 1;
	animation-fill-mode: both;
}

@keyframes scroller {
   0%  { transform: scale(0.9) translateX(-12.5%); }
  10%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 1)); }
  20%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 2)); }
  30%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 3)); }
  40%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 4)); }
  50%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 5)); }
  60%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 6)); }
  70%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 7)); }
  80%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 8)); }
  90%  { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 9)); }
  100% { transform: scale(0.9) translateX(calc(-12.5% - 8.333% * 9)); }
}

.slider-content div {
	width: 8.333%;
	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%;
}

:root {
	--speechbubble-margin:30px;
}
.speechbubble {
	top: 200px;
  margin: 30px;
  width: 200px;
  height: 80px;
  border-radius: 25px;
  background: rgba(255,255,255,0.95);
  position: relative;
  filter: drop-shadow(0px 0px 6px grey);
  animation-duration: 12s;
  animation-iteration-count: infinite;
	animation-fill-mode: forwards;
}

.speechbubble::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 30px;
  background: inherit;
  transform:scale(1,1);
}

.speechbubble.left::before{
  top:25px;
  right: 100%;
  clip-path: polygon(100% 0, 100% 100%,0% 20%);
}
.speechbubble.right::before{
  left: 100%;
  clip-path: polygon(0% 0, 0% 100%,100% 10%);
  bottom:30px;
}

.speechbubble.left.speech-animate {
  animation-name: left-bubbles;
}
.speechbubble.right.speech-animate {
  animation-name: right-bubbles;
}
.speechbubble:after {
	content: " ";
	display: block;
	position: absolute;
	width:100%;
	top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%);

	font-weight:500;
	font-size: 1.2em;

  animation-duration: 12s;
  animation-iteration-count: infinite;
}
.speechbubble.left {
	left:calc(45% - 100px - 30px);
}
.speechbubble.right {
	left:calc(60% - 100px - 30px);
}
.speechbubble.left.speech-animate:after {
  animation-name: left-text;
}
.speechbubble.right.speech-animate:after {
  animation-name: right-text;
}

:root {
	--speech-left-1: 220px;
	--speech-left-2: 250px;
	--speech-left-3: 280px;
	--speech-right-1: 100px;
	--speech-right-2: 130px;
	--speech-right-3: 160px;
}
@media (max-width: 940px) {
	:root {
		--speech-left-1: 180px;
		--speech-left-2: 190px;
		--speech-left-3: 200px;
		--speech-right-1: 70px;
		--speech-right-2: 80px;
		--speech-right-3: 90px;
	}
	.speechbubble.left {
		left:calc(45% - 80px - 30px);
	}
	.speechbubble.right {
		left:calc(60% - 120px - 30px);
	}
}
@media (max-width: 680px) {
	.speechbubble.left {
		left:calc(45% - 60px - 30px);
	}
	.speechbubble.right {
		left:calc(60% - 140px - 30px);
	}
}
@media (max-width: 550px) {
	:root {
		--speech-left-1: 130px;
		--speech-left-2: 140px;
		--speech-left-3: 150px;
		--speech-right-1: 30px;
		--speech-right-2: 40px;
		--speech-right-3: 50px;
	}
	.speechbubble.left {
		left:calc(40% - 60px - 30px);
	}
	.speechbubble.right {
		left:calc(60% - 160px - 30px);
	}
}

@keyframes left-bubbles {
   0% { opacity:0; }
	12% { top:var(--speech-left-1); opacity:0; }
  15% { opacity:100%; }
  24% { opacity:100%; }
  27% { top:var(--speech-left-1); opacity:0; }
  42% { top:var(--speech-left-2); opacity:0; }
  45% { opacity:100%; }
  54% { opacity:100%; }
  57% { top:var(--speech-left-2); opacity:0; }
  99% { opacity:0; }
	100% { opacity:0;}
}

@keyframes left-text {
   0% { content:"Spiele Skat!"; }
  27% { content:"Spiele Skat!"; }
  42% { content:"Meistere das Spiel!"; }
  57% { content:"Meistere das Spiel!"; }
	100% { }
}

@keyframes right-bubbles {
   0% { opacity:0; }
  27% { top:var(--speech-right-1); opacity:0; }
  30% { opacity:100%; }
  39% { opacity:100%; }
  42% { top:var(--speech-right-1); opacity:0; }
  57% { top:var(--speech-right-2); opacity:0; }
  60% { opacity:100%; }
  69% { opacity:100%; }
  98% { opacity:100%; }
  100% { top:var(--speech-right-2); opacity:0; }
}

@keyframes right-text {
   0% { content:"Werde besser!"; }
  42% { content:"Werde besser!"; }
  57% { content:"Skat für Anspruchsvolle!"; }
  100% { content:"Skat für Anspruchsvolle!"; }
}
