/* ========== BASICS ========== */
* {
	margin: 0; padding: 0; box-sizing: border-box;
}

body {
	background: #f8f8f8; font-family: 'Poppins', sans-serif; font-size: 16px; color: #777;
}

a {
	color: #337ab7; text-decoration: none;
}

ul {
	list-style: none;
}
/* ========== BASICS ========== */

/* ========== HEADER + NAVIGATION ========== */
header {
	position: fixed; top: 0; background: #60b4df; width: 100%;
}

.headContainer {
	max-width: 1300px; width: 100%; padding: 0 15px; margin: 0 auto; display: flex; position: relative;
}

.headLogo {
	/* logo-container */
	flex: 1; display: flex; align-items: center;
}

.headLogo h3 {
	color: #fff; font-size: 18px; font-weight: 600; letter-spacing: 2px; line-height: 48px;
}

.headLogo h3 span {
	font-weight: 300;
}

.headNavigation {
	/* nav-btn */
	flex: 4; display: flex;
}

.navLinks {
	/* nav-links */
	flex: 1;
}

.navLinks > ul {
	display: flex; align-items: center; justify-content: flex-end;
}

.navItem {
	/* nav-link */
	position: relative;
}

.navItem > a {
	line-height: 48px; color: #fff; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; transition: .5s;
}

.navItem > a > i {
	margin-left: 6px;
}

.navDropdown {
	/* dropdoen */
	position: absolute; top: 100%; left: 0; width: 200px; transform: translateY(10px); opacity: 0; pointer-events: none; transition: .5s;
}

.navDropdown ul {
	position: relative;
}

.dropItem {
	/* dropdown-link */
	position: relative;
}

.dropItem:not(:nth-last-child(2)) {
	border-bottom: 1px solid #efefef;
}

.dropItem > a {
	display: flex; background: #fff; color: #3498db; padding: 8px 16px; font-size: 14px; transition: .3s;
}

.dropItem:hover > a {
	background: #3498db; color: #fff;
}

.dropArrow {
	/* arrow */
	position: absolute; width: 11px; height: 11px; top: -5.5px; left: 32px; background: #fff; transform: rotate(45deg); cursor: pointer; transition: .3s; z-index: -1;
}

.dropItem:first-child:hover ~ .dropArrow {
	background: #3498db;
}

.navItem:hover > .navDropdown {
	transform: translate(0, 0); opacity: 1; pointer-events: auto;
}

.respnseContainer {
	/* hamburger-menu-container */
	flex: 1; display: none; align-items: center; justify-content: flex-end;
}

.responseMenu {
	/* hamburger-menu */
	width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}

.responseMenu div {
	width: 32px; height: 3px; border-radius: 3px; background: #fff; position: relative; z-index: 1001; transition: .5s;
}

.responseMenu div:before, .responseMenu div:after {
	content: ''; position: absolute; width: inherit; height: inherit; background: #fff; border-radius: 3px; transition: .5s;
}

.responseMenu div:before {
	transform: translateY(-7px);
}

.responseMenu div:after {
	transform: translateY(7px);
}

#check {
	position: absolute; top: 50%; right: 15px; transform: translateY(-50%); width: 40px; height: 40px; z-index: 90000; cursor: pointer; opacity: 0; display: none;
}

#check:checked ~ .respnseContainer .responseMenu div {
	background: transparent;
}

#check:checked ~ .respnseContainer .responseMenu div:before {
	transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .respnseContainer .responseMenu div:after {
	transform: translateY(0) rotate(45deg);
}

@keyframes animation {
	from {
		opacity: 0; transform: translateY(15px);
	}
	to {
		opacity: 1; transform: translateY(0);
	}
}

@media (max-width: 700px) {
	header {
		 z-index: 1000;
	}
	
	.respnseContainer {
		display: flex;
	}
	
	#check {
		display: block;
	}
	
	.headNavigation {
		position: fixed; height: calc(100vh - 48px); top: 48px; left: 0; width: 100%; background: #69bde7; flex-direction: column; align-items: center; justify-content: space-between; overflow-x: hidden; overflow-y: auto; transform: translateX(100%); transition: .65s;
	}
	
	#check:checked ~ .headNavigation {
		transform: translateX(0);
	}
	
	#check:checked ~ .headNavigation .navItem {
		animation: animation .5s ease forwards .6s;
	}
	
	.navLinks {
		flex: initial; width: 100%;
	}
	
	.navLinks > ul {
		flex-direction: column;
	}
	
	.navItem {
		width: 100%; opacity: 0; transform: translateY(15px);
	}
	
	.navItem > a {
		line-height: 1;
		padding: 12px 16px;
	}
	
	.navItem:hover > a {
		background: #50a9d6;
	}
	
	.navDropdown {
		position: initial; top: initial; left: initial; transform: initial; opacity: 1; pointer-events: auto; width: 100%; padding: 0; background: #3183ac; display: none;
	}
	
	.navItem:hover > .navDropdown {
		display: block;
	}
	
	.dropItem > a {
		background: transparent; color: #fff; padding: 12px 30px;
	}
	
	.dropItem:not(:nth-last-child(2)) {
		border-bottom: none;
	}
	
	.dropArrow {
		z-index: 1; background: #69bde7; left: 10%; transition: .5s;
	}
	
	.navItem:hover .dropArrow {
		background: #50a9d6;
	}
	
	.dropItem:hover > a {
		background: #3a91bd;
	}
	
	.dropItem:first-child:hover ~ .dropArrow {
		background: #50a9d6;
	}
}
/* ========== HEADER + NAVIGATION ========== */

/* ========== CONTAINER ========== */
.wrapper {
	max-width: 920px; width: 100%; margin: 58px auto 20px auto;
}

.container {
	width: 100%; background: #fff; padding: 20px; border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media (max-width: 700px) {
	.wrapper {
		width: 95%;
	}
}
/* ========== CONTAINER ========== */

/* ========== SYSTEMMELDUNGEN ========== */
.sysError {
	width: 100%; background: #ffe6e6; margin-bottom: 15px; padding: 20px; border-radius: 6px; color: #bf6060; font-size: 15px; font-style: italic; box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.sysTrue {
	width: 100%; background: #e6ffe6; margin-bottom: 15px; padding: 20px; border-radius: 6px; color: #598059; font-size: 15px; font-style: italic; box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.sysError ul, .sysTrue ul {
	list-style: square; margin-left: 30px;
}
/* ========== SYSTEMMELDUNGEN ========== */

/* ========== CONTENTBEREICH ========== */
.siteTitle {
	width: 100%; font-size: 16px; font-weight: 600; padding: 0 15px 5px 15px; border-bottom: 1px solid #c0c0c0; display: flex; align-items: center; justify-content: space-between;
}

.siteTitle a {
	color: #777; font-size: 18px;
}

.content {
	width: 100%; padding: 20px 30px;
}
/* ========== CONTENTBEREICH ========== */

/* ========== FORMULARE ========== */
.formular {
	width: 100%; padding: 20px; border-left: 3px solid #3183ac;
}

.formFlexField {
	width: 100%; margin-bottom: 15px; display: flex; align-items: center; column-gap: 10px;
}

.formFieldLine {
	flex: 1; position: relative; width: 100%;
}

.formFieldLine label a.help {
	color: #3183ac; cursor: help;
}

.formFieldLine input, .formFieldLine select {
	width: 100%; height: 50px; background: #fff; border-radius: 5px; border: 1px solid #c0c0c0; outline: none; font-family: inherit; color: #777; font-size: 16px; padding: 0 15px;
}

.formFileLine {
	flex: 2; position: relative; width: 100%;
}

.formFileLine #uploadButton {
	background: #3a91bd; color: #fff; font-size: 15px; font-family: inherit; padding: 10px 15px; border: none; outline: none; border-radius: 5px; cursor: pointer;
}

.formFileLine #uploadText {
	margin-left: 10px; font-size: 15px; color: #777;
}

.formFlexCheck {
	width: 100%; margin-bottom: 15px; display: flex; align-items: center; column-gap: 10px;
}

.formCheckBox {
	width: 60px; display: flex; align-items: center; justify-content: center;
}

.formCheckBox .boxCheck {
	appearance: none; background-color: #dfe1e4; border-radius: 72px; border-style: none; flex-shrink: 0; height: 20px; margin: 0; position: relative; width: 30px;
}

.formCheckBox .boxCheck::before {
	bottom: -6px; content: ""; left: -6px; position: absolute; right: -6px; top: -6px;
}

.formCheckBox .boxCheck, .formCheckBox .boxCheck::after {
	transition: all 100ms ease-out;
}

.formCheckBox .boxCheck::after {
	background-color: #fff; border-radius: 50%; content: ""; height: 14px; left: 3px; position: absolute; top: 3px; width: 14px;
}

.formCheckBox input[type=checkbox] {
	cursor: default;
}

.formCheckBox .boxCheck:hover {
	background-color: #c9cbcd; transition-duration: 0s;
}

.formCheckBox .boxCheck:checked {
	background-color: #50a9d6;
}

.formCheckBox .boxCheck:checked::after {
	background-color: #fff; left: 13px;
}

.formCheckBox :focus:not(.focus-visible) {
	outline: 0;
}

.formCheckBox .boxCheck:checked:hover {
	background-color: #50a9d6;
}

.formCheckText {
	font-size: 15px; display: flex; align-items: center; justify-content: flex-start;
}

.formFlexButton {
	width: 100%; display: flex; align-items: center; column-gap: 10px;
}

.formFlexButton button {
	flex: 1; width: 100%; height: 50px; background: #3183ac; border-radius: 5px; border: none; outline: none; font-family: inherit; color: #fff; font-size: 16px;
}

.formFlexButton button[type=reset] {
	background: #990000;
}

.formFlexButton button i {
	margin-right: 6px;
}

.formFlexLink {
	width: 100%; font-size: 15px; margin-top: 15px; display: flex; align-items: center; justify-content: center;
}

.formFlexLink a i {
	margin-right: 6px;
}

@media (max-width: 700px) {
	.formFlexField {
		flex-direction: column;
	}
	
	.formFieldLine label {
		font-size: 14px;
	}
	
	.formFlexButton button[type=reset] {
		display: none;
	}
}
/* ========== FORMULARE ========== */

/* ========== BENUTZERPANEL ========== */
.member {
	width: 100%; padding: 20px; border-left: 3px solid #354b56;
}

.memberInfoLine {
	width: 100%; display: flex; align-items: flex-start; column-gap: 10px;
}

.memberPictureBox {
	flex: 1; width: 100%;
}

.mbrPicFile {
	width: 100%; text-align: center;
}

.mbrPicOption {
	width: 100%; margin-top: 10px; text-align: center;
}

.mbrPicOption .btn {
	background: #598059; color: #fff; padding: 8px 15px; border: none; border-radius: 5px;
}

.mbrPicOption .btn.delete {
	background: #990000; margin-left: 6px;
}

.memberInfoBox {
	flex: 3; width: 100%;
}

.mbrInfoLine {
	width: 100%; margin: 0 20px;
}

.mbrInfoFlexLine {
	width: 100%; margin: 3px 0; display: flex; align-items: center; column-gap: 10px;
}

.mbrInfoFlexBox {
	flex: 1; font-size: 15px;
}

.memberPictureBox h3, .memberInfoBox h3 {
	width: 100%; font-size: 16px; color: #777; margin-bottom: 12px; padding: 0 15px 5px 15px; border-bottom: 1px solid #c0c0c0;
}

@media (max-width: 700px) {
	.memberInfoLine {
		flex-direction: column; row-gap: 20px;
	}
}
/* ========== BENUTZERPANEL ========== */

/* ========== FOOTER ========== */
.footer {
	width: 100%; font-size: 14px; text-align: center; padding-top: 10px; border-top: 1px solid #c0c0c0;
}
/* ========== FOOTER ========== */