@charset "utf-8";
/* CSS Document */

html,
body {
  	scrollbar-gutter: stable;
	margin: 0 auto;
	height: 100%;
	background-color: #08353b;
	font-family: 'Quicksand', sans-serif;
	font-weight: 500;
	font-optical-sizing: auto;
}

#container {
	background-color:#fff;
	min-height:100%;
	width: 80%;
	min-width: 780px;
	max-width: 1200px;
  	margin: 0 auto;
	box-shadow: 4px 4px 4px #111;
	text-align:left;
}


/* LÖSUNG um Bilder-Kontextmenü zu VERMEIDEN */
.img-wrapper {
      position: relative;
      display: inline-block;
}

.img-wrapper img {
      display: block;
}

.overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: transparent;
}

/* TITLE and FOOTER */
#titlebar {
	position: fixed;
	z-index:20;
  	top: 0; 
	right: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.75);
	text-align: right;
	padding: 10px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	border-bottom:1px solid #aaa;
}

#titlebar_text {
  	margin: 0 auto;
	width: 85%;
	max-width: 1150px;
	color: #eee;
}

#footer {
  	position: fixed; 
	z-index:20;
	width: 100%;
	height: 50px;
  	bottom: 0px; 
	background-color: rgba(0, 0, 0, 0.75);
	-webkit-backdrop-filter: blur(5px); 
	backdrop-filter: blur(5px); 
	border-top:1px solid #aaa;
	text-align:center;
}

#footer_text {
  	margin: 0 auto;
	width: 85%;
	max-width: 1150px;
	color: #ddd;
	font-size: 15px;
	font-weight: 300;
}	

.footer_socials {
	float:right;
	padding-right: 10px;
	margin-top:-28px;
}


/* CONTENT */
.contentbox {
	position:relative;
	z-index:10;
	border: 4px solid #ddd;
	border-radius: 10px;
	margin: 50px;
	padding: 0px 30px 30px 30px;
	font-size: 18px;
	font-weight: 400;
	background-color: rgba(255, 255, 255, 0.75);
	-webkit-backdrop-filter: blur(2px); 
	backdrop-filter: blur(2px); 
}

.contentbox b {
	font-weight: 700;
	color: #333;
}

.contentbox a {
	font-weight: 700;
	color: #589;
}


h1.header {
	margin: auto auto;
	padding: 0px;
	font-size: 36px;
	font-weight: 200;
}

@media (max-width: 900px) {
h1.header {
	margin: auto auto;
	padding: 0px;
	font-size: 38px;
	font-weight: 200;
}
}

h2.header {
	font-size: 30px;
	font-weight: 700;
	color: #ccc;
	display: table;
	background-color:white;
 	margin: -32px auto 20px auto;
	padding: 10px;
}

@media (max-width: 900px) {
h2.header {
	font-size: 36px;
	font-weight: 700;
	color: #ccc;
	display: table;
	background-color:white;
 	margin: -34px auto 20px auto;
	padding: 10px;
}
}

h3.header {
	font-size: 24px;
	font-weight: 500;
	color: #bbb;
	display: table;
	background-color:white;
 	margin: -17px auto 0px auto;
	padding: 0px 10px 20px 10px;
}

.subtitle {
	font-size:18px;
	font-weight:300;
	color:#acacac;
}

@media (max-width: 900px) {
  .subtitle {
    display: none;
  }
}


.line_separator {
	width: 60%;
	margin: 40px 20% 0px 20%;
	border-top:3px solid #eee;
	text-align:center;
}



input[type='checkbox'] { 
	display: none; 
} 

.wrap-collapsible { 
	margin: 1.2rem 0; 
	padding: 0px 10px;
} 

.lbl-toggle { 
	display: block; 
	font-weight: 600; 
	font-size: 17px; 
	text-align: center; 
	padding: 10px; 
	color: #777; 
	background: #f2f2f2; 	
	cursor: pointer;
	border-top: 1px solid #aaa; 

	transition: all 0.25s ease-out; 
} 

.lbl-toggle:hover { 
	color: #333;
	background: #ddd; 
}
 
.lbl-toggle::before { 
	content: ' ';
	display: inline-block;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid currentColor;
	vertical-align: middle;
	margin-right: .7rem;
	transform: translateY(-2px);
	transition: transform .2s ease-out; 
} 

.toggle:checked+.lbl-toggle::before { 
	transform: rotate(90deg) translateX(-3px); 
} 

.collapsible-content { 
	max-height: 0px; 
	overflow: hidden; 
	transition: max-height .25s ease-in-out; 
	border-bottom: 1px solid #aaa; 
}
 
.toggle:checked + .lbl-toggle + .collapsible-content { 
	max-height: 750px; 
} 

.collapsible-content .content-inner { 
	background: #fff; 
	padding: .5rem 1rem; 
	font-size:15px;
} 

.pub {
	text-align:left;
	padding: 5px 10px;
	color: #111;
	font-size: 14px;
	font-weight: 400;
}

.pub_options {
	font-size: 12px;
	padding: 0px 18px;
	margin-bottom: 28px;
	text-align:left
}

.pub_options a {
	text-decoration: none;
	color: #4580AF;
}


.text_soft {
	font-weight: 700;
	color: #ccc;
}

.socials {
	font-size:19px;
	font-weight:600;
	color: #589;
}