/* Farben
weiß, schwarz, helleres Grau #ccc, dunkleres Grau "darkgray" (Footer), dunkleres Türkis #006F84, helleres Türkis #4699AB */
/* roboto-regular - latin */
@font-face {
	font-display: swap; /* Check https: //developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('/assets/fonts/roboto-v51-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	     url('/assets/fonts/roboto-v51-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-italic - latin */
@font-face {
	font-display: swap; /* Check https: //developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 400;
	src: url('/assets/fonts/roboto-v51-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	     url('/assets/fonts/roboto-v51-latin-italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-600 - latin */
@font-face {
	font-display: swap; /* Check https: //developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 600;
	src: url('/assets/fonts/roboto-v51-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	     url('/assets/fonts/roboto-v51-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-600italic - latin */
@font-face {
	font-display: swap; /* Check https: //developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 600;
	src: url('/assets/fonts/roboto-v51-latin-600italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	     url('/assets/fonts/roboto-v51-latin-600italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
body {
	font-family: Roboto, system-ui, sans-serif;
	margin: 0;
	color: #111;
	line-height: 1.5rem;
}
body.etbody {
	background: #ffffff;
}
body.ptbody {
	background: #fffaf0;
}
h1, h2, h3 {
	padding: 1rem 0;
	line-height: 2rem;
}
a {
	transition-duration:0.2s;
	text-decoration: none;
	color: #888;
}
a:hover {
	color: #006F84;
}
.liste {
	list-style-type: disc;
}
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem 3rem 4rem 3rem;
}
.containerfooter {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem 2rem 0rem 2rem;
}
.narrow {
	max-width: 700px;
}
.booking-box {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 1rem;
	text-align: center;
}
.hero {
	padding: 3rem 1rem;
	text-align: center;
}
.section {
	padding: 2rem 0;
}
.light {
	background: #f0f0f0;
}
.btn {
	padding: 0.8rem 1.4rem;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	border-width: 1px;
border-radius: 5px;
}
.btn:active {
	box-shadow: none;
	padding: 0.9rem 1.3rem 0.7rem 1.5rem;
}
.primary {
	background: #006F84;
	color: white;
	box-shadow: 2px 2px 10px darkgray;
}
.primary:hover {
	color: white;
}
.secondary {
	background: #ffffff;
	border: 1px solid #999;
	color: #111;
	box-shadow: 2px 2px 10px lightgray;
}
.cta-group {
	text-align: center;
	padding: 1rem 0;
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.card {
	padding: 1rem;
	border: 1px solid #ccc;
border-radius: 5px;
}
.cta {
	text-align: left;
}
.micro {
	  font-size: 0.9rem;
	  color: #666;
	  margin-top: 0.5rem;
}
.section-note {
	  margin-top: 1rem;
	  color: #444;
}
.sticky-cta {
	position: fixed;
	top: 34%;
	right: 1px;
	z-index: 10;
	transition: opacity 0.5s ease, visibility 0.5s;
}
.sticky-cta a {
	font-weight: bold;
	text-align: center;
	line-height: 1.2rem;
/*	border: 3px solid #006F84; */
	border: 2px solid #28515C;
	border-radius: 15px;
	padding: 0.7rem 0.7rem;
	text-decoration: none;
	color: white;
	background: #4699AB;
	/* background: radial-gradient(circle,rgba(70, 153, 171, 1) 50%, rgba(40, 81, 92, 1) 100%); */
	box-shadow: 3px 3px 10px #111;
	opacity: 1;
	visibility: visible;
}
.hide-cta {
	opacity: 0;
	visibility: hidden;
}
.sticky-cta a:active {
	box-shadow: none;
	padding: 0.6rem 0.6rem 0.4rem 0.8rem;
}
.sticky-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	transition: opacity 0.5s ease, visibility 0.5s;
}
.sticky-top a {
	opacity: 1;
	visibility: visible;
}
.sticky-pt {
	position: fixed;
	top: 25%;
	left: 10px;
	font-size: 30pt;
	color: #ccc;
	color: rgba(204, 204, 204, 0.5);
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	transform:rotate(180deg);
}
.footer {
	background: #808080;
	color: white;
}
.link {
	color: #111;
	background: #ffffff;
	padding: 0.2rem 0.4rem;
	line-height: 2rem;
	text-decoration: none;
	border-radius: 5px;
	box-shadow: 2px 2px 10px lightgray;
}
.link:active {
	box-shadow: none;
	padding: 0.3rem 0.3rem 0.1rem 0.5rem;
}
.softlink {
	color: #111;
	text-decoration: none;
	padding: 0.1rem;
	border-radius: 5px;
	box-shadow: 0px 1px 4px lightgray;
}
.softlink:active {
	box-shadow: none;
	padding: 0.2rem 0rem 0rem 0.2rem;
}
.linkfooter {
	color: white;
	background: transparent;
	box-shadow: 2px 2px 10px #111;
}
.linkfooter:hover {
	color: white;
}
.logo {
	text-align: center;
}
.nav {
	text-align: center;
	margin-top: 1.5rem;
}
.regular-checkbox {
	-webkit-appearance: none;
	border: 1px solid black;
	width: 100%;
	display: inline-block;
	position: relative;
	top: 0.4em;
	left: 0px;
	width: 15px;
	height: 15px;
}
.regular-checkbox: checked {
	background-color: #4699AB;
	border: 1px solid black;
}
.regular-radio {
	-webkit-appearance: none;
	background-color: #eeeeee;
	border: 2px solid #aaaaaa;
	border-radius: 15px;
	width: 100%;
	display: inline-block;
	position: relative;
	width: 15px;
	height: 15px;
}
.regular-radio:checked {
	background-color:#4699AB;
	border:2px solid black;
}
.tabheader {
	text-align: left;
	font-weight: bold;
	font-size: larger;
	padding-bottom: 1em;
}
.zoomable {
  transition: transform 0.3s ease;
  cursor: pointer;
  max-width: 300px; /* Vorschaugröße */
}
.zoomable.zoomed {
  transform: scale(2); /* Bild wird doppelt so groß */
  cursor: zoom-out;
}
.ptest {
	border-bottom: 1px solid #ccc;
	padding: 0.5rem 0;
}
.ptest2 {
	border-bottom: 1px solid #ccc;
	font-size: small;
	line-height: 1rem;
}
audio::-webkit-media-controls-panel {
  background: #ccc;
}
audio {
	min-width: 300px;
	width: 90%;
/*	border: 2px solid #111;*/
/*	border-radius: 30px;*/
}
