div#adminInfo {
	display: none;
	position: fixed;
	bottom: 0px;
	right: 0px;
	width: 35px;
	height: 35px;
	background-color: white;
	border: 1px solid #ab2422;
	z-index: 1000;
	overflow: auto;
	transition: .5s ease;
}
div#adminInfo span.toggle {
	display: block;
	position: sticky;
	top: 0;
	right: 0;
	font-size: 1.2em;
	transition: .5s ease;
}
div#adminInfo span.toggle:hover {
	color: #ab2422;
}
div#adminInfo table td i {
	font-size: 1.5em;
}
div#adminInfo div.adminInfoContent {
	display: none;
	padding: 30px;
	text-align: justify;
	background-color: #e6e6e6;
	z-index: 5;
}
div#adminInfo span.toggle:after {
	font-family: 'Font Awesome 6 Free';
	content: "\f35d";
	-webkit-transform: rotate(90deg);
  	transform: rotate(-90deg);
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	position: absolute;
	top: 9px;
	left: 10px;
	cursor: pointer;
}
div#adminInfo.opened {
	height: 80%;
	width: 80%;
	box-shadow: 0px 0px 17px 3px rgba(0,0,0,0.75);
	-webkit-box-shadow: 0px 0px 17px 3px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 17px 3px rgba(0,0,0,0.75);
}
div#adminInfo.opened div {
	display: block;
}
div#adminInfo.opened span.toggle:after {
	content: "\f35d";
	-webkit-transform: rotate(90deg);
  	transform: rotate(90deg);
}
.fa-circle-check {
	color: #397b23;
}
.fa-circle-xmark {
	color: #ab2422;
}
.fa-triangle-exclamation {
	color: #ff6c00;
}
table.searchResult {
	border-collapse: collapse;
	width: 100%;
	margin: 12px 0 24px 0;
}
table.searchResult th, table.searchResult td {
	vertical-align: middle !important;
	padding: 3px;
	position: relative;
	height: 25px;
	font-size: 14px;
}
table.searchResult th {
	text-align: center;
	border: 1px solid black;
	font-weight: bold;
	text-decoration: none;
	color: #828282;
	text-transform: uppercase;
	background-clip: padding-box;
}
table.searchResult.normalHeader th {
	text-transform: unset;
}
table.searchResult td {
	border: 1px solid black;
	color: #606060;
}
table.searchResult td.centered {
	text-align: center;
}
table.searchResult tr:nth-child(even) {
	background: #eaeaea;
}
table.searchResult tr:nth-child(odd) {
	background: #ffffff
}
table.searchResult tr:hover {
	background-color: #b8b8b8;
}
table.searchResult tr:hover td {
	/*color: white;*/
	color: black;
}
table.searchResult tr:hover th {
	background-color: #ffffff;
	color: #828282;
}
table.searchResult th.tablesorter-header {
	padding-right: 16px;
  	white-space: nowrap;
}
table.searchResult th.orderable, table.searchResult th.ordered, .tablesorter-headerUnSorted {
	padding: 3px 5px 3px 3px;
	cursor: pointer;
}
table.searchResult th.orderable:after, table.searchResult th.ordered:after, table.searchResult th.ordered:before, table.searchResult th.ordered.asc:after, table.searchResult th.ordered.desc:after, .tablesorter-headerUnSorted:after, .tablesorter-headerAsc:after, .tablesorter-headerDesc:after {
	font-family: 'Font Awesome 6 Free';
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	font-size: 1.3em;
	position: absolute;
	top: 6px;
	right: 3px;
}
table.searchResult th.orderable:after, .tablesorter-headerUnSorted:after {
	content: "\f0dc";
}
table.searchResult th.ordered:before {
	content: "\f0dc";
	color: #cacaca;
}
table.searchResult th.ordered.asc:after, .tablesorter-headerAsc:after {
	content: "\f0de";	
}
table.searchResult th.ordered.desc:after, .tablesorter-headerDesc:after {
	content: "\f0dd";
}
table.searchResult tr td i {
	font-size: 1.2em;
}
table.searchResult tr td.alert {
	color: #ff6c00;
}
table.searchResult span.More {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	color: #ab2422;
	font-size: 12px;
}
table.searchResult span.More::before {
	content: "\f101";
}
pre {
	max-width: 100%;
	padding: 12px;
	background-color: #d5d5d5;
	border: 1px solid black;
	border-radius: 5px;
	text-align: left;
	overflow: auto;
}