:root {
	--filter_x: 1;
}
* {
    box-sizing: border-box;
	font-size: 16px;
	font-family: arial,helvetica;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0px 0px 20px 0px;
	background-color: #ddd;
}

h1, h1 a, h1 span {
	font-size: 50px;
	margin-bottom: 10px;
}
h1 span.arrow {
	color: #aaa;
}

h2 {
	font-size: 35px;
	margin-top: 15px;
}

.width100pct {
	width: 100%;
}

p.infotext {
	font-size: 35px;
	margin: 0px;
}
p.infovalue {
	font-size: 50px;
	margin: 0px;
	font-weight: bold;
}

div.infobox {
	padding: 20px;
	display: inline-block;
	border: 1px solid #146;
	border-radius: 5px;
	background-color: #8cd;
}

a {
	text-decoration: none;
	color: #48b;
}

p.form_error {
	color: #BB4040;
}
.hidden {
	display: none !important;
}
.missing_red {
	color: #F00 !important;
	font-weight: bold;
}

/*#region - Default form page */
.default_form_page {
	max-width: 600px;
	margin: 0px auto auto auto;
	width: 100%;
}
.default_form_page div.topbar {
	padding: 3px;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	font: bold 22px arial,helvetica;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
}
.default_form_page div.topbar .topbar_item {
	color: #fff;
	background-color: #666;
    flex: 10;
    border: 1px solid black;
    padding: 7px;
	text-align: center;
	cursor: pointer;
}
.default_form_page div.topbar .topbar_item.small {
    flex: 1;
}

@media screen and (max-width: 600px)
{
	.default_form_page main {
		padding: 0px 10px;
	}
	.default_form_page div.topbar .topbar_item {
		padding: 17px;
	}

	.default_form_page .info_form {
		margin: 10px 0px 10px 0px;
	}
	.default_form_page table.info_form__table td {
		padding: 20px 10px;
	}
	.default_form_page .button {
		padding: 20px 10px;
	}
}
/*#endregion*/

/*#region - Update form */
.info_form {
	margin: 16px 0px 16px 0px;
	padding: 10px;
	border: #00000047 1px solid;
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.30) inset;
	border-radius: 5px;
	background-color: #eee;

	h1 {
		font-size: 24px;
		margin: 0px 0px 5px 0px;
		padding: 0px;
	}

	h3 {
		/*font-size: 24px;*/
		margin: 0px 0px 5px 0px;
		/*padding: 0px;*/
	}

	.form_field {
		/*margin: 20px 0px;*/
		padding-top: 10px;

		input {
			width: 100%;
			font-family: Arial;
			font-size: 16px;
			border: #aaa 1px solid;
			border-radius: 5px;
			padding: 6px;
			box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10) inset;
		}

		p {
			font-weight: bold;
			font-family: Arial;
			font-size: 14px;
			padding: 0px;
			margin: 3px 0px;
		}
	}
	.form_field:first-child {
		padding-top: 0px;
	}
	/*.form_field:last-child {
		margin: 10px 0px;
	}*/

	table {
		/*margin-bottom: 10px;*/
		border-collapse: collapse;
		width: 100%;

		th {
			background-color: #eee;
			border-bottom: 1px solid #aaa;
			padding: 5px 20px;
			font-size: 14px;
			font-weight: bold;
			color: #888;
			text-align: left;
		}
		tr:nth-child(even) {
			background-color: #d4e2e8;
		}
		tr:nth-child(odd) {
			background-color: #ddd;
		}
		tr:hover {
			background-color: #bbdcea;
		}
		td {
			border-bottom: 1px solid #aaa;
			padding: 5px 20px;
			cursor: pointer;
			font-size: 16px;
			color: #000;

			/*a {
				color: #000 !important;
				text-decoration: none !important;
				font-weight: normal !important;
				cursor: default !important;
				user-select: none !important;
			}*/
		}
	}

	.bold {
		font-weight: bold;
	}
	.right {
		text-align: right;
	}
}

/*section.info_form__form p.value {
	font-weight: normal;
	font-family: Arial;
	font-size: 18px;
	padding: 0px;
	margin: 3px 0px;
}*/
/*#endregion*/

/*#region - Update form table */
/*section.info_form__table {
	padding: 10px;
}
section.info_form__table h3 {
	margin: 5px 0px 10px 0px;
}
table.info_form__table {
	margin-bottom: 10px;
	border-collapse: collapse;
	width: 100%;
}
table.info_form__table th {
	background-color: #eee;
	border-bottom: 1px solid #aaa;
	padding: 5px 20px;
	font-size: 14px;
	font-weight: bold;
	color: #888;
	text-align: left;
}
table.info_form__table tr:nth-child(even) {
	background-color: #d4e2e8;
}
table.info_form__table tr:nth-child(odd) {
	background-color: #ddd;
}
table.info_form__table tr:hover {
	background-color: #bbdcea;
}
table.info_form__table td {
	border-bottom: 1px solid #aaa;
	padding: 5px 20px;
	cursor: pointer;
	font-size: 16px;
	color: #000;
}
.info_form__table--bold {
	font-weight: bold;
}
.info_form__table--right {
	text-align: right;
}*/
/*#endregion*/

/*#region - Buttons */
.button {
	padding: 10px 10px;
	width: 100%;
	font-weight: bold;
	cursor: pointer;
	user-select: none;
	border-radius: 5px;
	display: inline-block;
    text-align: center;
}
.button:disabled {
	border: 1px solid #aaa;
	background-color: #ddd;
	color: #aaa;
}
.button h2 {
	font-size: 34px;
	margin: -10px 0px;
	padding: 0px;
	display: inline-block;
	vertical-align: middle;
}
.button p {
    margin: 0px 0px 0px 10px !important;
	padding: 0px;
	display: inline-block;
	vertical-align: middle;
	font-size: 16px !important;
}
.button.top {
	border-radius: 5px 5px 0px 0px;
}
.button.bottom {
	border-radius: 0px 0px 5px 5px;
}
.button.left {
	border-radius: 5px 0px 0px 5px;
}
.button.right {
	border-radius: 0px 5px 5px 0px;
	border-left: none !important;
}
.button.green {
	border: 1px solid #080;
	background-color: #cec;
	color: #080;
}
.button.green:hover {
	background-color: #ada;
}
.button.yellow {
	border: 1px solid #a57b00;
	background-color: #fc0;
	color: #000;
}
.button.yellow:hover {
	background-color: #db0;
}
.button.red {
	border: 1px solid #800000;
	background-color: #f00;
	color: #fff;
}
.button.red:hover {
	background-color: #d00;
}
.button.blue {
	border: 1px solid #048;
	background-color: #acf;
	color: #048;
}
.button.blue:hover {
	background-color: #9be;
}
input[type="file"] {
    display: none;
}
input[type="file"]:disabled+label {
	border: 1px solid #aaa;
	background-color: #ddd;
	color: #aaa;
}
.button.gray {
	border: 1px solid #666;
	background-color: #eee;
	color: #444;
}
.button.gray:hover {
	background-color: #ddd;
}
/*#endregion*/

/*#region - Top bar */
div.topbar {
	padding: 3px;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	font: bold 22px arial,helvetica;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;

	.topbar_item {
		color: #fff;
		background-color: #666;
		flex: 10;
		border: 1px solid black;
		padding: 7px;
		text-align: center;
		cursor: pointer;
		user-select: none;
	}
	.topbar_item.small {
		flex: 1;
	}
}
/*#endregion*/
