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

html, body {
	min-height: 100vh;
	background: #36474f;
	font-family: "Noto Sans", sans-serif;
	color: #777;
	font-size: 16px;
}

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

ul {
	list-style: none;
}

.wrapper {
	max-width: 900px;
	width: 100%;
	margin: 10px auto;
}

.container {
	width: 100%;
	background: #fff;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.siteHeader {
	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;
}

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

/* ******************** CONTENT ******************** */
.content {
	width: 100%;
	padding: 40px;
}
/* ******************** CONTENT ******************** */

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

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

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

.formField {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}

.formField label {
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
}

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

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

.formField input[type=number] {
	width: 100%;
	height: 50px;
	background: #fff;
	border: 1px solid #c0c0c0;
	outline: none;
	border-radius: 3px;
	font-family: inherit;
	color: #777;
	font-size: 15px;
	padding: 0 15px;
}

.formField i.formIcon {
	position: absolute;
	top: 48px;
	left: 10px;
	transform: translateY(-50%);
	font-size: 21px;
	color: #8b8b8b;
	cursor: pointer;
}

.formField i.eyeIcon {
	position: absolute;
	top: 48px;
	right: 10px;
	transform: translateY(-50%);
	font-size: 16px;
	color: #8b8b8b;
	cursor: pointer;
}

.formField i.formIcon.help {
	color: #3183ac;
	cursor: help;
}

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

.formCheckFlexLine input[type="checkbox"] {
	visibility: hidden;
	display: none;
}

.formCheckFlexLine .toggle {
	position: relative;
	display: block;
	width: 40px;
	height: 20px;
	margin: 0 15px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transform: translate3d(0, 0, 0);
}

.formCheckFlexLine .toggle:before {
	content: "";
	position: relative;
	top: 3px;
	left: 3px;
	width: 34px;
	height: 14px;
	display: block;
	background: #9a9999;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.formCheckFlexLine .toggle span {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	display: block;
	background: white;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
	transition: all 0.2s ease;
}

.formCheckFlexLine .toggle span:before {
	content: "";
	position: absolute;
	display: block;
	margin: -18px;
	width: 56px;
	height: 56px;
	background: rgba(202, 231, 254, 1);
	border-radius: 50%;
	transform: scale(0);
	opacity: 1;
	pointer-events: none;
}

.formCheckFlexLine #cbx-3:checked + .toggle:before {
	background: #e6f4ff;
}

.formCheckFlexLine #cbx-3:checked + .toggle span {
	background: #3183ac;
	transform: translateX(20px);
	transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
	box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
}

.formCheckFlexLine #cbx-3:checked + .toggle span:before {
	transform: scale(1);
	opacity: 0;
	transition: all 0.4s ease;
}

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

.formButtonFlexLine button {
	flex: 1;
	width: 100%;
	height: 50px;
	background: #3183ac;
	border: none;
	outline: none;
	border-radius: 3px;
	font-family: inherit;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
}

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

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

@media (max-width: 700px) {
	.formFieldFlexLine {
		flex-direction: column;
	}
	
	.formButtonFlexLine button[type=reset] {
		display: none;
	}
}
/* ******************** FORMULAR ******************** */

/* ******************** SONSTIGES ******************** */
.toolTip {
	width: 100%;
	background: #e6f4ff;
	margin-top: 8px;
	font-size: 14px;
	color: #6096bf;
	border-radius: 3px;
	font-style: italic;
}

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

.toolTipBody {
	width: 100%;
	padding: 20px;
}

.toolTipBody ul {
	list-style: square;
	margin-left: 15px;
	margin-top: 15px;
}
/* ******************** SONSTIGES ******************** */

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

.footer ul {
	display: flex;
}

.footer ul li {
	margin-left: 8px;
}

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