html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	font-size: 16px;
}

.center {
	text-align: center;
	margin: 0 auto;
}

.vcenter {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.top-50 {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.rel {
	position: relative;
}

.w100 {
	width: 100%;
}

.login-box {
	border: 1px dotted #000000;
	padding: 20px;
	margin: 0 auto;
	box-sizing: border-box;
	border-radius: 20px;
	width: auto;
}

.header {
	border-bottom: 1px dotted #000000;
}

.bi-16 {
	font-size: 16px;
}

.bi-32 {
	font-size: 32px;
}

.bi-36 {
	font-size: 36px;
}

.red,
a.red {
	color: red;
}

.green,
a.green {
	color: green;
}

.gray,
a.gray {
	color: rgba(0, 0, 0, 0.5);
}

.darkgray,
a.darkgray {
	color: rgba(0, 0, 0, 0.35);
}

.orange,
a.orange {
	color: orange;
}

.black,
a.black {
	color: black;
}

.pointer {
	cursor: pointer;
}

.btn-light {
	color: #000;
	background-color: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
	color: #000;
	background-color: rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.15);
}

.admin-name {
	position: absolute;
	top: 5px;
	right: 2px;
}

.header a:link {
	text-decoration: none;
}

.header a h1 {
	color: black;
}

tr.level1 {
	background-color: rgba(197, 179, 14, 0.2);
}

input.have-error {
	border: 2px solid #ff0000;
}