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

html, body {
	background: #36474f;
	font-family: "Open Sans", sans-serif;
	color: #777;
	font-size: 16px;
}

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

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

/* ========== ========== HEADER + NAVIGATION ========== ========== */
header {
	position: sticky;
	top: 0;
	width: 100%;
	background: #60b4df;
	z-index: 1000;
}

.headerContainer {
	/* container */
	position: relative;
	max-width: 1200px;
	width: 100%;
	padding: 0 32px;
	margin: 0 auto;
	display: flex;
}

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

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

.headerLogo a span {
	font-weight: 300;
}

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

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

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

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

.navLink > a {
	line-height: 48px;
	color: #fff;
	padding: 0 12.8px;
	letter-spacing: 1px;
	font-size: 15.2px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: .5s;
}

.navLink > a > i {
	margin-left: 3.2px;
}

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

.navDropdown > ul {
	position: relative;
}

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

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

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

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

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

.dropdownLink:first-child:hover ~ .dropdownArrow {
	background: #3498db;
}

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

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

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

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

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

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

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

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

#check:checked ~ .hamburgerContainer .hamburgerMenu div {
	background: transparent;
}

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

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

@media (max-width: 700px) {
	.hamburgerContainer {
		display: flex;
	}
	
	#check {
		display: block;
	}
	
	.headerMenu {
		position: fixed;
		height: calc(100vh - 48px);
		top: 48px;
		left: 0;
		width: 100%;
		background: #69bde7;
		overflow-x: hidden;
		overflow-y: auto;
		transform: translateX(100%);
		transition: .65s;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
	}
	
	#check:checked ~ .headerMenu {
		transform: translateX(0);
	}
	
	.menuLinks {
		flex: initial;
		width: 100%;
	}
	
	.menuLinks > ul {
		flex-direction: column;
	}
	
	.navLink {
		width: 100%;
	}
	
	.navLink > a {
		line-height: 1;
		padding: 25.6px 32px;
	}
	
	.navLink: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;
	}
	
	.navLink:hover > .navDropdown {
		display: block;
	}
	
	.dropdownLink > a {
		background: transparent;
		color: #fff;
		padding: 19.2px 32px;
	}
	
	.dropdownLink:not(:nth-last-child(2)) {
		border-bottom: none;
	}
	
	.dropdownArrow {
		z-index: 1;
		background: #69bde7;
		left: 10%;
		transform: scale(1.1) rotate(45deg);
		transition: .5s;
	}
	
	.navLink:hover .dropdownArrow {
		background: #50a9d6;
	}
	
	.dropdownLink:hover > a {
		background: #3a91bd;
	}
	
	.dropdownLink:first-child:hover ~ .dropdownArrow {
		background: #50a9d6;
	}
}
/* ========== ========== HEADER + NAVIGATION ========== ========== */

/* ========== ========== SECTION + CONTAINER ========== ========== */
.section {
	height: calc(100vh - 48px);
	width: 100%;
}

.container {
	max-width: 930px;
	width: 100%;
	margin: 10px auto;
}

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

/* ========== ========== BREADCRUMB ========== ========== */
.breadCrumb {
	width: 100%;
	background: #fff;
	font-size: 14px;
	padding: 20px;
	border-radius: 3px;
	margin-bottom: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.breadCrumb span {
	margin-right: 10px;
}

.breadCrumb span a {
	color: #777;
	font-style: italic;
}

@media (max-width: 700px) {
	.breadCrumb {
		display: none;
	}
}
/* ========== ========== BREADCRUMB ========== ========== */

/* ========== ========== CONTENTBEREICH ========== ========== */
.content {
	width: 100%;
	background: #fff;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contentHeader {
	width: 100%;
	padding: 20px;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contentBody {
	width: 100%;
	padding: 20px 30px;
}

.contentFooter {
	width: 100%;
	padding: 20px;
	font-size: 13px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contentFooter ul {
	display: flex;
}

.contentFooter ul li a {
	color: #777;
	padding: 0 8px;
}

@media (max-width: 700px) {
	.contentFooter {
		flex-direction: column;
		row-gap: 5px;
		justify-content: center;
	}
}
/* ========== ========== CONTENTBEREICH ========== ========== */

/* ========== ========== FORMULARBEREICH ========== ========== */
.formularFieldLine {
	width: 100%;
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	column-gap: 15px;
}

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

.formularFieldBox span {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}

.formularFieldBox span a {
	cursor: help;
}

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

.formularFieldBox .eyeIcon {
	position: absolute;
	transform: translateY(-50%);
	top: 46px;
	right: 15px;
	font-size: 18px;
	color: #8b8b8b;
	cursor: pointer;
}

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

.formularCheckLine .formCheckBox {
	position: relative;
	margin-left: 10px;
}

.formularCheckLine .formCheckBox label {
	background: #fff;
	border: 1px solid #c0c0c0;
	border-radius: 50%;
	cursor: pointer;
	height: 28px;
	width: 28px;
	display: block;
}

.formularCheckLine .formCheckBox label:after {
	border: 2px solid #fff;
	border-top: none;
	border-right: none;
	content: '';
	height: 6px;
	left: 8px;
	opacity: 0;
	position: absolute;
	top: 9px;
	transform: rotate(-45deg);
	width: 12px;
}

.formularCheckLine .formCheckBox input[type="checkbox"] {
	visibility: hidden;
	display: none;
	opacity: 0;
}

.formularCheckLine .formCheckBox input[type="checkbox"]:checked + label {
	background: #66bb6a;
	border-color: #66bb6a;
}

.formularCheckLine .formCheckBox input[type="checkbox"]:checked + label:after {
	opacity: 1;
}

.formularButtonLine {
	width: 100%;
	display: flex;
	column-gap: 15px;
}

.formularButtonLine button {
	flex: 1;
	width: 100%;
	height: 50px;
	background: #598059;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

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

.formularButtonLine button[type="reset"] {
	background: #805959;
}

.formularLinkLine {
	width: 100%;
	margin-top: 20px;
	text-align: center;
}

.formularLinkLine a {
	color: #777;
}

.formularLinkLine a:hover {
	color: #3183ac;
}

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

@media (max-width: 700px) {
	.formularFieldLine {
		flex-direction: column;
		row-gap: 15px;
	}
	
	.formularButtonLine button[type="reset"] {
		display: none;
	}
}
/* ========== ========== FORMULARBEREICH ========== ========== */

/* ========== ========== SYSTEMMELDUNGEN ========== ========== */
.sysError {
	width: 100%;
	background: #ffe6e6;
	color: #805959;
	font-size: 15px;
	padding: 20px 40px;
	border-radius: 3px;
	margin-bottom: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.sysTrue {
	width: 100%;
	background: #e6ffe6;
	color: #598059;
	font-size: 15px;
	padding: 20px 40px;
	border-radius: 3px;
	margin-bottom: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.sysMsgLine {
	width: 100%;
	margin-bottom: 3px;
	display: flex;
	align-items: center;
	column-gap: 10px;
}
/* ========== ========== SYSTEMMELDUNGEN ========== ========== */

/* ========== ========== MODAL ========== ========== */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
	opacity: 0;
	pointer-events: none;
}

.modal.showModal {
    opacity: 1;
	pointer-events: auto;
}

.modalContainer {
	max-width: 400px;
	width: 100%;
	background: #fff;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.modalHeader {
	width: 100%;
	padding: 20px;
	font-weight: 600;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modalContent {
	width: 100%;
	max-height: 550px;
	padding: 20px;
	font-size: 15px;
	overflow: auto;
}

.modalContent p {
	width: 100%;
	margin: 10px 0;
}

.modalFlexLine {
	width: 100%;
	margin-bottom: 5px;
	font-style: italic;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.modalFormField {
	width: 100%;
	margin-bottom: 15px;
}

.modalFormField span {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}

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

.modalFormButton {
	width: 100%;
	display: flex;
	column-gap: 15px;
}

.modalFormButton button {
	flex: 1;
	width: 100%;
	height: 50px;
	background: #598059;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

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

.modalFooter {
	width: 100%;
	padding: 20px;
	font-size: 14px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modalSysError {
	width: 100%;
	background: #ffe6e6;
	color: #805959;
	font-size: 15px;
	text-align: center;
	padding: 20px;
	margin-bottom: 15px;
}

.modalSysTrue {
	width: 100%;
	background: #e6ffe6;
	color: #598059;
	font-size: 15px;
	text-align: center;
	padding: 20px;
	margin-bottom: 15px;
}
/* ========== ========== MODAL ========== ========== */