@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
*:not(input):not(textarea) {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}
* {
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
  height: 100%;
  background-color: #272729;
  font-size: 15px;
}
body, input, textarea, button {
	font: 1rem/1rem "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "slnt" 0;
	color: #ffffff;
}
.animlogo {
	position: absolute;
	display: block;
	width: 25rem;
	left: 50%;
	top: calc(50% - 7rem);
	transform: translate(-50%, -50%);
}
loginnw {
	position: absolute;
	display: none;
	width: 15rem;
	left: 50%;
	top: calc(50% + 10rem);
	transform: translate(-50%, -50%);
	padding-bottom: 3.5rem;
}
loginnw[show] {
	display: block;
	animation: lwanim 2s forwards;
}
loginnw h2 {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 2rem;
	line-height: 2rem;
}
loginnw label {
	position: relative;
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: 1rem;
	color: #999;
}
loginnw input {
	position: relative;
	display: block;
	width: 100%;
	background: none;
	border-bottom: 0.1rem solid #444;
	padding: 0.2rem;
	font-size: 1.2rem;
	line-height: 1.2rem;
}
loginnw input:focus {
	border-bottom-color: #02adee;
}
button {
	background-color: #444;
	padding: 0.7rem 1.3rem;
	cursor: pointer;
	border-radius: 0.2rem;
}
loginnw button {
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
}
button:hover {
	background-color: #02adee;	
}
button:active {
	background-color: #014e81;	
}
loginnw button {
	margin-top: 1rem;
}
@keyframes lwanim {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 100%;
	}
}
errorm {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9900;
}
errorw {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 1rem;
	background-color: #333;
	border-radius: 0.2rem;
	box-shadow: 0 0 2rem #000000;
	max-width: 50%;
	min-width: 20rem;
}
errorw[buttons] {
	padding-bottom: 4.5rem;
}
errorw button {
	position: absolute;
	display: block;
	right: 1rem;
	bottom: 1rem;
}
errorw h2 {
	position: relative;
	display: block;
	width: 100%;
	font-size: 2rem;
	line-height: 2rem;
	color: #f00;
	border-bottom: 0.1rem solid #555;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
}
errorw p {
	position: relative;
	display: block;
	margin-top: 0.5rem;
}
errorw p b {
	color: #fca;
}
serverstatus {
	position: fixed;
	display: block;
	top: 0.5rem;
	left: 0.5rem;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 0.4rem;
	z-index: 9999;
	pointer-events: none;
	background-color: #444;
}
serverstatus[error] {
	background-color: #f00;
}
serverstatus[connected] {
	background-color: #0f0;
}
busy {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 9990;
	background-color: rgba(0, 0, 0, 0.8);
	pointer-events: none;
}
busy video {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
busy[caption]::after {
	position: absolute;
	display: block;
	left: 50%;
	top: calc(50% + 70px);
	content: attr(caption);
	transform: translate(-50%, -50%);
	background-color: #222;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
}