* {
	padding: 0;
	margin: 0;
}
html, body {
	height: 100%;
	width: 100%;
}
body {
	color: #222222;
	background-color: #eeeeee;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 16px;
}

a {
	color: #222222;
}
a:hover {
	color: #888888;
}
input, textarea, select, option, .customButton {
	margin: 3px;
	color: rgba(0, 0, 0, 0.75);
	background-color: rgba(0, 0, 0, 0.15);
	border-radius: 4px;
}
option {
	background-color: rgba(255, 255, 255, 0.6);
}
input, textarea, select, .customButton {
	padding: 8px;
	border: none;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0px 2px 2px 0 rgba(255, 255, 255, 0.3) inset;
}
input[type=radio] {
	position: relative;
	top: 0.1em;
	left: 0.2em;
	width: 1.5em;
	height: 0.8em;
	box-shadow: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
input[type=button], input[type=submit], input[type=reset] {
	text-align: center;
	vertical-align: center;
	cursor: pointer;
	color: rgba(0, 0, 0, 1);
	background-color: rgba(0, 0, 0, 0.25);
}
.customButton {
	display: inline-block;
	cursor: pointer;
}
input[type=submit] {
	font-weight: bold;
}
input::placeholder, textarea::placeholder {
	color: rgba(0, 0, 0, 0.25);
}
input:hover, textarea:hover, select:hover, .customButton:hover {
	color: rgba(0, 0, 0, 0.82);
	background-color: rgba(0, 0, 0, 0.2);
}
input:hover::placeholder, textarea:hover::placeholder {
	color: rgba(0, 0, 0, 0.3);
}
input:focus, textarea:focus, select:focus, .customButton:focus {
	color: rgba(0, 0, 0, 0.87);
	background-color: rgba(0, 0, 0, 0.25);
}
input:focus::placeholder, textarea:focus::placeholder {
	color: rgba(0, 0, 0, 0.35);
}
input[type=text]:disabled:hover,
input[type=password]:disabled:hover,
select:disabled:hover {
	color: rgba(0, 0, 0, 0.75);
	background-color: rgba(0, 0, 0, 0.1);
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, input[type=button]:focus, input[type=submit]:focus, input[type=reset]:focus {
	color: rgba(0, 0, 0, 1);
	background-color: rgba(0, 0, 0, 0.35);
}

table {
	margin: 10px;
	border-spacing: 0px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}
thead {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th {
	font-weight: bold;
}
th, td {
	display: table-cell;
	vertical-align: inherit;
	padding: 10px 20px 10px 20px;
}

.importantButton {
	font-weight: bold;
}
[data-tooltip] {
	display: none;
}
[data-tooltip]:hover::before {
	content: "";
	position: absolute;
	top: 3.3em;
	left: 0.7em;
	z-index: 9999;
	opacity: 0.8;
	background: url(../img/triangle-to-top.png);
	height: 0.64em;
	width: 3em;
}
[data-tooltip]:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	margin-top: 4.9em;
	margin-left: -5.3em;
	color: #ffffff;
	background: rgba(0,0,0,0.8);
	padding: 1em;
	border-radius: 2px;
	box-shadow: 0em 0.1em 0.1em 0em rgba(0, 0, 0, 0.3), 0em 0.1em 0.1em 0em rgba(255, 255, 255, 0.3) inset;
	z-index: 9998;
	font-size: 0.8em;
	text-align: center;
}
.grecaptcha-badge {
	display: none;
}

.loading {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.loading div {
	position: absolute;
	border: 4px solid #333;
	opacity: 1;
	border-radius: 50%;
	animation: loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes loading {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}

@keyframes redFlash {
  0% {
    /*background-color: rgba(63, 0, 0, 0);*/
  }
  100% {
    background-color: rgba(255, 21, 21, 1);
	color: rgba(249, 215, 215, 1);
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 4px 4px 0px rgba(255, 255, 255, 0.4) inset; */
  }
}





.scrollable::-webkit-scrollbar {
	width: 15px;
	height: 15px;
}
.scrollable::-webkit-scrollbar:hover {
	background-color: rgba(50, 50, 50, 0.1);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 1px 0px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 1px 0px rgba(255, 255, 255, 0.3) inset;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 1px 0px rgba(255, 255, 255, 0.3) inset;
}
.scrollable::-webkit-scrollbar-thumb {
	background-color: rgba(50, 50, 50, 0.2);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4), 0px 1px 1px 0px rgba(255, 255, 255, 0.4) inset;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4), 0px 1px 1px 0px rgba(255, 255, 255, 0.4) inset;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4), 0px 1px 1px 0px rgba(255, 255, 255, 0.4) inset;
}
.scrollable::-webkit-scrollbar-thumb:hover {
	background-color: rgba(50, 50, 50, 0.3);
	-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5), 0px 1px 1px 0px rgba(255, 255, 255, 0.5) inset;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5), 0px 1px 1px 0px rgba(255, 255, 255, 0.5) inset;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5), 0px 1px 1px 0px rgba(255, 255, 255, 0.5) inset;
}
.scrollable::-webkit-scrollbar-button {
	width: 0;
	height: 0;
	display: none;
}

.scrollable::-webkit-scrollbar-corner {
	background-color: transparent;
}


input.toggleButton {
	height: 0;
	width: 0;
	display: none;
}

label.toggleButton {
	cursor: pointer;
	text-indent: -9999px;
	width: 56px;
	height: 26px;
	background-color: rgba(0, 0, 0, 0.2);
	display: block;
	border: 2px solid rgba(0, 0, 0, 0);
	border-radius: 26px;
	position: relative;
}
label.toggleButton:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 21px;
	height: 21px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 21px;
	transition: 0.3s;
}
input.toggleButton:checked + label.toggleButton {
	background: #53a000;
	border: 2px solid rgba(255, 255, 255, 0.4);
}
input.toggleButton:checked + label.toggleButton:after {
	left: calc(100% - 3px);
	transform: translateX(-100%);
	background-color: rgba(255, 255, 255, 0.95);
}
label.toggleButton:active:after {
	width: 31px;
}

#main {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	text-align: center;
}
#title {
	margin-top: 25px;
	margin-left: 150px;
	margin-right: 150px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 140%;
	font-weight: bold;
}
#title.prod {
	background-color: rgb(0,212,255);
	/* color: ; */
}
#title.beta {
	background-color: rgb(255,0,255);
	/* color: ; */
}
#path {
	font-size: 120%;
	font-weight: bold;
	margin-top: 15px;
}
#auth, #chooseClassName {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	padding: 20px;
	width: 400px;
	background-color: rgba(0, 0, 0, 0.05);
	box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 50%), 0px 2px 2px 0px rgb(255 255 255 / 50%) inset;
	border-radius: 4px;
}
#errormsg {
	margin-top: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #f7cece;
	background-color: #a00000;
}
#noResult {
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	font-size: 110%;
	font-weight: bold;
}
a.logout {
	position: absolute;
	top: 28px;
	right: 10px;
}

.filter {
	margin-left: auto;
	margin-right: auto;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 75%;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
.sortMarker {
	position: relative;
	top: 2px;
	font-size: 130%;
	margin-left: 10px;
}
table.externalObjects {
	margin-left: 0;
	font-size: 80%;
}
.pagination {
	margin-left: auto;
	margin-right: auto;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 75%;
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
.footer {
	height: 50px;
}
