* {
	box-sizing: border-box;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}

@media screen and (max-width: 767px) {
	header {
		width: 100%;
		position: fixed;
		bottom: 0;
		box-shadow: 0px 1px 20px -4px rgba(0,0,0,0.75);
		z-index: 100;
		background: white;
	}

	#logo {
		width: 48px;
		padding: 12px 0;
	}
}

@media screen and (min-width: 768px) {
	header {
		width: 100%;
		position: fixed;
		top: 0;
		box-shadow: 0px 1px 20px -4px rgba(0,0,0,0.75);
		z-index: 100;
		background: white;
	}

	#logo {
		width: 72px;
		padding: 24px 0;
	}
}

header .container {
      display: flex;
      align-items: center;
}

#mainnav ul {
	float: right;
	margin-bottom: 0;
}

#mainnav ul li {
	list-style-type: none;
	float: left;
	margin: 0;
}

#mainnav ul li a {
	display: block;
	text-decoration: none;
	font-size: 24px;
      font-weight: 400;
}

form .row {
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.25);
  margin-bottom: 24px;
}

footer {
	box-shadow: 0px -1px 20px -4px rgba(0,0,0,0.75);
	position: fixed;
	bottom: 0;
	width: 100%;
	background: white;
	z-index: 100;
}

@media screen and (max-width: 767px) {
	footer {
		display: none;
	}
}

footer p {
	margin: 0;
	float: right;
	margin-top: 20px;
	font-weight: 100;
}

#footernav ul {
	float: left;
	margin-bottom: 0;
}

#footernav ul li {
	list-style-type: none;
	float: left;
	margin: 0;
	margin-right: 48px;
}

#footernav ul li a {
	display: block;
	text-decoration: none;
	padding: 12px;
}

#footernav ul li a:first-of-type {
	margin-left: -24px;
}

.erfolg {
	border: 2px solid #52ea36;
	color: #52ea36;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 24px;
	border-radius: 4px;
}

.fehler {
	border: 2px solid #f29435;
	color: #f29435;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 24px;
	border-radius: 4px;
}

html {
	overflow-y: scroll;
}

html, body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 768px) {
	.content {
		flex: 1 0 auto;
		padding-bottom: 96px;
		padding-top: 192px;
	}
}

@media screen and (max-width: 767px) {
	.content {
		flex: 1 0 auto;
		padding-bottom: 168px;
		padding-top: 48px;
	}
}

label[for*="vorname"], label[for*="nachname"], label[for*="personenbeschreibung"] {
	font-size: 14px;
	margin-left: 16px;
	font-weight: normal;
}

.rahmen {
	float: left;
}

img {
	display: block;
}

a.uebersicht {
	display: block;
	margin-bottom: 24px;
}

table {
	width: 100%;
}

table td, table th {
	width: 50%;
}

table caption {
	text-align: left;
	font-weight: 600;
}

fieldset {
	margin: 0;
}

ul.schlagwortliste, ul.personenliste {
	margin-bottom: 0;
}

ul.schlagwortliste li, ul.personenliste li {
	list-style-type: none;
	padding-left: 24px;
}

.personen:nth-of-type(4n+1) {
	margin-left: 0;
}

.detailansicht {
	position: relative;
}

.detailansicht img {
	width: 100%;
	margin-bottom: 24px;
}

.detailansichtseite img {
	max-width: 100%;
	max-height: 60vh;
	margin: 0 auto;
}

.detailansichtseite a {
	display: block;
	background: black;
}

.detailansichtseite {
	position: relative;
}

.detailoptionen {
	width: 100%;
	background: rgba(0,0,0,1);
	display: flex;
	flex-direction: row;
	padding: 6px 12px 6px 0;
	justify-content: flex-end;
	margin-bottom: 0;
}

.detailoptionen li {
	list-style-type: none;
	float: left;
	margin: 0;
	margin-left: 24px;
}

.detailoptionen li a {
	font-size: 24px;
	color: #1ea1db;
}

.beschreibung {
	margin: 0;
	margin-bottom: 48px;
	width: 100%;
	background: rgba(0,0,0,1);
	color: white;
	padding: 12px;
	letter-spacing: 0.02em;
}

.personendaten, .schlagworte {
	margin-bottom: 48px;
}

.personendaten a, .schlagworte a {
	text-decoration: none;
}

.schlagworte .schlagwortliste li, .personendaten .personenliste li {
	padding-left: 0;
}

.bilddaten table {
	width: 100%;
}

.row + h2 {
	margin-top: 24px;
}

body {
	animation: fadein 0.5s;
	-moz-animation: fadein 0.5s;
	-webkit-animation: fadein 0.5s;
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-o-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Mobile Navigation */

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 500;
	top: 0;
	right: 0;
	background-color: #111;
	overflow-x: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	display: flex;
	flex-direction: column-reverse;
	text-align: right;
}

.sidenav span {
	z-index: 400;
}

.sidenav a {
	padding: 4px 32px 4px 16px;
	text-decoration: none;
	font-size: 24px;
	color: #818181;
	display: block;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.sidenav .unterpunkte {
	margin: 0;
	padding-left: 24px;
}

.sidenav .unterpunkte a {
	font-size: 14px;
}

.sidenav a:hover,
.sidenav a:focus {
	outline: none;
}

.sidenav a::before,
.sidenav a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
	transition: opacity 0.2s, -webkit-transform 0.3s;
	transition: transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
}

.sidenav a::before {
	margin-right: 8px;
	content: '[';
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
}

.sidenav a::after {
	margin-left: 8px;
	content: ']';
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
}

.sidenav a:hover::before,
.sidenav a:hover::after,
.sidenav a:focus::before,
.sidenav a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}

.sidenav a:active {
	color: #914D4A;
}

.sidenav a:first-child {
	font-size: 48px;
	padding-bottom: 4px;
}

.sidenav .active {
	color: #366085;
}

.sidenav .closebtn {
	position: absolute;
	top: 4px;
	right: 0px;
	z-index: 500;
	font-size: 52px;
	margin-left: 50px;
}

body > span {
	position: fixed;
	font-size: 48px;
	right: 7.5%;
	bottom: 0;
	z-index: 400;
	cursor: pointer;
	margin: 0;
	padding: 0;
}

/* Mobile */
@media screen and (min-width: 768px) {
	.sidenav,
    body > span {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	#mainnav {
		display: none;
	}
}