
html, body {
	font-family: Arial;
	font-size: 14px;
	background-color: #ccc;
	margin: 0;
	padding: 0;
}

h1 {
	margin: 0px;
	padding: 0px 0px 10px 0px;
	font-size: 28px;
	color: #2f5c19;
}
h2 {
	margin: 0px;
	padding: 0px 0px 10px 0px;
	font-size: 22px;
	color: #598b18;
}
h3 {
	margin: 0px;
	padding: 0px 0px 10px 0px;
	font-size: 18px;
	color: #598b18;
}
p {
	margin: 0px;
	padding: 3px 0px;
}
a {
	color: #6a8668;
	text-decoration: none;
}


input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="number"], textarea, select {
	margin: 0;
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 2px;
	box-sizing: border-box;
	background-color: white;
}
input[type="text"], input[type="password"], input[type="email"], textarea {
	width: 100%;
}
textarea {
	height: 90px;
}
input[type="submit"], input[type="button"], .Button, .BorderButton, button {
	margin: 0;
	padding: 8px 16px;
	border-radius: 2px;
	border: 1px solid #7f9c7d;
	background-color: #7bbb77;
	color: white;
	font-size: 14px;
	display: inline-block;
}
input[type="submit"]:hover, .Button:hover, button:hover {
	background-color: #d5f1d5;
}
input[type="button"] {
	background-color: #ccc;
	border-color: #b4b9b3;
}
input[type="button"]:hover {
	background-color: white;
	color: black;
}
.BorderButton {
	background-color: white;
	color: #7f9c7d;
}
.BorderButton:hover {
	background-color: #f7f7f7;
}

select {
	max-width: 100%;
}

.Wrapper {
	max-width: 1000px;
	margin: 0px auto;
	background-color: white;
	overflow: hidden;
}

.Clear {
	clear: both;
}
header {
	position: relative;
	height: 50px;
	background-color: #7bbb77;
}
header .Headline {
	position: absolute;
	top: 12px;
	left: 50%;
	margin-left: -74px;
	color: white;
	font-size: 24px;
	font-weight: bold;
}

header .NavigationButton, header .Account {
	position: absolute;
	top: 6px;;
	left: 20px;
	width: 36px;
	height: 36px;
	border: 1px solid white;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}
header .Account {
	left: auto;
	right: 20px;
}
header .NavigationButton:before,
header .NavigationButton:after {
	position: absolute;
	top: 7px;
	left: 5px;
	right: 5px;
	border-top: 3px solid white;
	content: "";
}
header .NavigationButton:after {
	top: 16px;
	height: 6px;
	border-bottom: 3px solid white;
}
header nav {
	position: absolute;
	top: 100%;
	left: -180px;
	width: 160px;
	padding: 8px;
	background-color: #568253;
	transition: left 200ms ease-in-out;
	z-index: 2;
}
header nav[data-status="open"] {
	left: 0;
}
header nav a {
	position: relative;
	padding: 10px 5px 10px 40px;
	border-top: 1px solid white;
	color: white;
	display: block;
}
header nav a svg {
	position: absolute;
	top: 6px;
	left: 9px;
	fill: white;
}
header nav a i {
	font-style: normal;
}
header nav a:first-child {
	border-top: 0;
}
.Content {
	padding: 20px;
	box-sizing: border-box;
}
footer {
	padding: 20px;
	background-color: #555;
	color: white;
	text-align: center;
}
footer a {
	color: white;
}
@media (max-width: 400px) {
	header .NavigationButton {
		left: 10px;
	}
	header .Account {
		right: 10px;
	}
	.Content {
		padding: 20px 10px;
	}
	footer {
		font-size: 12px;
		padding: 15px 10px;
	}
}



.Box {
	padding: 10px 20px;
	border-left: 4px solid #ccc;
	border-right: 4px solid #ccc;
	background-color: #f7f7f7;
	margin-bottom: 10px;
}
.Box_ok, .Box_error {
	text-align: center;
}
.Box_ok {
	border-left-color: #68c36f;
	border-right-color: #68c36f;
	background-color: #def3df;
	color: #146718;
}
.Box_error {
	border-left-color: #e28080;
	border-right-color: #e28080;
	background-color: #ffc4c4;
	color: #a53030;
}


form[method="post"], .Form {
	background-color: #f7f7f7;
	padding: 15px 15px 10px 15px;
	border-radius: 5px;
}
.Form {
	padding: 10px 15px;
}
.FormularRow {
	position: relative;
	padding: 5px 0;
}

.FormularRowInput {
	padding-left: 120px;
}
.FormularRowInput i {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 110px;
	display: flex;
	align-items: center;
	font-style: normal;
}
.FormularRowInput_list i {
	top: 11px;
	bottom: auto;
}
.FormularRowInput_list p {
	padding: 6px 0;
}
.FormularRowInput_list > div > div {
	margin-top: 5px;
}
.FormularRowInput_list > div > div:first-child {
	margin-top: 0;
}
.FormularMultiInput1, .FormularMultiInput2 {
	width: 120px;
	float: left;
}
.FormularMultiInput1 input, .FormularMultiInput2 input {
	width: 80px;
	text-align:right;
}
.FormularRowInput_submit {
	padding-top: 15px;
}

@media (max-width: 460px) {
	.FormularRowInput {
		padding-left: 0 !important;
	}
	.FormularRowInput i {
		position: relative;
		top: 0;
		width: auto !important;
		display: block;
		padding: 1px 0 3px 0;
	}
}

.Form table {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-spacing: 0;
}

.Wbk {
	border: 1px solid #ccc;
	background-color: #f1f1f1;
	overflow: auto;
}
.Wbk table {
	width: 100%;
	min-width: 600px;
	padding: 8px 10px;
	border-spacing: 0;
}
.Wbk table tr td {
	border-top: 1px dotted #ccc;
	padding: 3px 0 3px 5px;
}
.Wbk table tr td:first-child {
	padding-left: 0;
}
.Wbk table tr:first-child td {
	border-top: 0;
}
.Wbk_w {
	background-color: #d5f1d5;
}
.Wbk_w, .Wbk_w tr td {
	border-color: #a1c1a1;
}
.Wbk_s {
	background-color: #ffffaf;
}
.Wbk_s, .Wbk_s tr td {
	border-color: #b1b161;
}
.Wbk_lp {
	background-color: #e2efff;
	border-color: #b0cef3;
}



.SummeRow, .SchussRow {
	margin-top: 10px;
}
.SummeRow_1, .SchussRow_1 {
	margin-top: 0;
}
.SummeRow input {
	width: 100px;
}
.SchussRow select {
	padding: 5px;
}



.YearStatistic {
	margin-top: 5px;
	padding: 30px 10px 40px 10px;
	background-color: #60735f;
	border-radius: 10px;
	color: white;
}
.YearStatisticCol {
	width: 8.33%;
	height: 100px;
	border-bottom: 1px solid white;
	position: relative;
	float: right;
}
.YearStatisticCol i {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 2px;
	text-align: center;
	font-style: normal;
}
.YearStatisticBalken {
	position: absolute;
	bottom: 3px;
	left: 6%;
	right: 6%;
	background-color: #f1f1f1;
}
.YearStatisticBalken1,
.YearStatisticBalken2 {
	left: 6%;
	right: auto;
	width: 42%;
}
.YearStatisticBalken2 {
	left: auto;
	right: 6%;
	background-color: #d5f1d5;
}
.YearStatisticBalken i {
	top: -20px;
	margin-top: 0;
}
.YearStatisticSmall .YearStatisticBalken i {
	top: -18px;
	font-size: 12px;
}

@media (max-width: 500px) {
	.YearStatistic {
		padding: 25px 5px 27px 5px
	}
	.YearStatistic i {
		font-size: 10px;
	}
	.YearStatisticBalken i {
		top: -13px;
	}
	.YearStatisticSmall .YearStatisticBalken i {
		top: -12px;
		font-size: 8px;
	}
}

.SumStatistic {
	position: relative;
	margin-top: 5px;
	height: 170px;
	background-color: #60735f;
	border-radius: 10px;
	color: white;
}
.SumStatistic .SumStatisticRows,
.SumStatistic .SumStatisticCols,
.SumStatistic .SumStatisticDots {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 20px;
}
.SumStatistic .SumStatisticCols,
.SumStatistic .SumStatisticDots {
	left: 45px;
}
.SumStatistic .SumStatisticCols {
	top: auto;
	bottom: 19px;
}
.SumStatistic .SumStatisticRow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-top: 1px dotted rgba(255,255,255,0.5);
	font-size: 10px;
}
.SumStatistic .SumStatisticRow i {
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	text-align: right;
	font-style: normal;
}
.SumStatistic .SumStatisticCol {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	font-size: 12px;
}
.SumStatistic .SumStatisticDots[data-status="active"] {
	z-index: 3;
}
.SumStatistic .SumStatisticDots[data-status="inactive"] {
	opacity: 0.1;
}
.SumStatistic .SumStatisticDot {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 6px;
	height: 6px;
	border: 10px solid transparent;
	background-clip: padding-box;
	margin: 0 0 -13px -13px;
	border-radius: 100%;
	background-color: #ccc;
	z-index: 2;
}
.SumStatistic .SumStatisticDot i {
	position: absolute;
	bottom: 15px;
	left: -10px;
	padding: 5px;
	border-radius: 5px;
	background-color: black;
	color: white;
	white-space: nowrap;
	font-style: normal;
	display: none;
	z-index: 3;
}
.SumStatistic .SumStatisticDot i:before {
	position: absolute;
	bottom: -5px;
	left: 8px;
	border: 5px solid transparent;
	border-top-color: black;
	border-bottom: 0;
	content: "";
}
.SumStatistic .SumStatisticDot:hover {
	border-color: rgba(255,255,255,0.1);
}
.SumStatistic .SumStatisticDot:hover i {
	display: block;
}

.RudertingJM {
	overflow: auto;
}
.RudertingJM > strong {
	display: block;
}
.RudertingJM table {
	margin: 2px 0 0 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-spacing: 0;
}
.RudertingJM table tr {
	vertical-align: center;
}
.RudertingJM table tr td,
.RudertingJM table tr th {
	padding: 8px 5px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.RudertingJM table tr td {
	width: 73px;
}
.RudertingJM table tr td a {
	color: black;
}
.RudertingJM table tr td strong {
	font-size: 16px;
	display: block;
	text-align: center;
}
.RudertingJM table tr td small {
	display: block;
	text-align: center;
	color: #555;
}
.RudertingJM table tr th {
	width: 80px;
	font-size: 22px;
}
.RudertingJM table + table {
	margin-top: 0;
	border-top: 0;
}

.RudertingJM table + table tr td a {
	color: #999;
}

.Calculator {
	padding: 5px;
	background-color: #eee;
	overflow: auto;
}
.Calculator table {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-spacing: 0;
}
.Calculator input {
	display: block;
	width: 100%;
	max-width: 100px;
	margin: 0px auto;
	box-sizing: border-box;
	text-align: center;
}
.Calculator hr {
	margin: 5px 0;
	padding: 0;
	border: 0;
	border-top: 1px solid black;
	
}
.CalculatorSum table {
	width: auto;
}
.CalculatorSum tr td:first-child {
	padding-right: 20px;
}

@media (max-width: 500px) {
	.Calculator tr th b {
		display: none;
	}
}



.WaffePowder {
	margin-top: 10px;
	padding: 5px 0;
	background-color: #eee;
	overflow: auto;
}
.WaffePowder b {
	word-break: break-word;
}
.WaffePowder small {
	white-space: nowrap;
}
.WaffePowder input, .WaffePowder select {
	width: 100%;
	min-width: 50px;
	margin: 0;
	padding: 2px 10px;
	box-sizing: border-box;
	text-align: right;
}
.WaffePowder select {
	width: auto;
	margin-bottom: 4px;
}
.WaffePowder table {
	width: 100%;
	border: 0;
	border-spacing: 0;
}
.WaffePowder table tr {
	vertical-align:top;
}
.WaffePowder table td {
	padding: 2px 0;
}
.WaffePowder table td:first-child {
	padding: 2px 10px;
}
.WaffePowder table td.WaffePowderInput {
	width: 100px;
	padding-left: 0;
	padding-right: 10px;
}
.WaffePowder table td.WaffePowderSize {
	width: 50px;
	padding-top: 6px;
	font-size: 11px;
}
.WaffePowder table table {
	width: auto;
}
.WaffePowder table table td,
.WaffePowder table table td:first-child {
	padding: 2px 0;
}
.WaffePowder table table td:first-child {
	padding-right: 10px;
}

@media (max-width:560px) {
	.WaffePowder table td.WaffePowderInput {
		width: 50px;
	}
}


.TabsNavigation {
	border-bottom: 1px solid #a1c1a1;
	margin-bottom: 10px;
}
.TabsNavigation > a {
	margin: 0 0 -1px 10px;
	padding: 5px 10px;
	border: 1px solid #a1c1a1;
	background-color: #d5f1d5;
	float: left;
}
.TabsNavigation > a.Active {
	border-bottom-color: white;
	background-color: white;
	color: black;
}
.TabsContent {
	display: none;
}
.TabsContentActive {
	display: block;
}


.ContentRow .ContentCol {
	width: 100%;
	margin-left: 2%;
	float: left;
}
.ContentRow .ContentCol1 {
	margin-left: 0;
}
.ContentRow2 .ContentCol {
	width: 49%;
}
.ContentRow3 .ContentCol {
	width: 32%;
}
.ContentRow4 .ContentCol {
	width: 23.5%;
}

@media (max-width: 850px) {
	.ContentRow3 .ContentCol {
		width: 100%;
		margin: 20px 0 0 0;
	}
	.ContentRow3 .ContentCol1 {
		margin-top: 0;
	}
}
