/* Ubuntu setup */
@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-B.ttf");
	font-weight: bold;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-BI.ttf");
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-C.ttf");
	font-stretch: condensed;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-L.ttf");
	font-weight: light;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-LI.ttf");
	font-weight: light;
	font-style: italic;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-M.ttf");
	font-weight: 500;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-MI.ttf");
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-R.ttf");
	font-weight: normal;
}

@font-face {
	font-family: "Ubuntu";
	src: url("/resources/font/ubuntu/Ubuntu-RI.ttf");
	font-weight: normal;
	font-style: italic;
}
/* User-interface */
html {
	user-select: none;
}

body {
	background-image: linear-gradient(320deg, rgb(105, 52, 80) 0%, rgb(35, 48, 90) 100%);
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	color: white;
	text-align: center;
	font-family: "Ubuntu", sans-serif;
	height: 100vh;
	margin: 0;
}

#container {
	width: 100%;
	height: 100%;
}

.center {
	padding-bottom: 48px;
	min-height: calc(100% - 48px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
}

.tshadow {
	text-shadow: rgb(0 0 0 / 50%) 0rem 0.35rem 0.5rem;
}

.bshadow {
	box-shadow: rgb(0 0 0 / 50%) 0rem 0.35rem 0.5rem;
}

.intro {
	letter-spacing: -0.15rem;
	line-height: 0;
	color: white;
	font-size: 40px;
	font-weight: bold;
}

.copyright {
	position: absolute;
	bottom: calc(30px + 6px);
	right: 6px;
	font-size: 14px;
}

.textalign-left {
	text-align: left;
	/* bypass body assignment */
}

.dir li {
	list-style-image: url(resources/img/dirarrow.svg);
}

ul.dir,
.dir ul {
	padding-left: 1.5em;
}

a:link {
	color: #6E6EE6;
	text-decoration: none;
}

a:visited {
	color: #86B;
	text-decoration: none;
}

a:hover {
	color: #7E7EE7;
	text-decoration: none;
}

a:active {
	color: #5454E6;
	text-decoration: none;
}

.footer {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	bottom: 0;
	width: 100%;
	background-image: linear-gradient(180deg, rgba(0%, 0%, 0%, 40%) 0%, rgba(0%, 0%, 0%, 20%) 100%);
	text-align: center;
	z-index: 99998;
	height: 48px;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

#footer-content {
	line-height: 10px;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tbbutton {
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	height: 24px;
	min-width: 24px;
	margin: 0 2px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0);
	box-shadow: unset;
	transition: 0.1s;
}

.tbbutton img {
	height: 24px;
	width: 24px;
	pointer-events: none;
}

.tbbutton span {
	font-size: 14px;
	color: white;
}

.tbbutton:hover {
	background-color: rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.tbbutton:active {
	background-color: rgba(200, 200, 200, 0.1);
	box-shadow: unset;
}

.tbseperate {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 2px;
	margin: 0 2px;
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.1);
}

a.nopointer,
a.nopointer:hover,
a.nopointer:active {
	cursor: default;
}

.tooltip {
	width: auto;
	height: auto;
	opacity: 0;
	position: fixed;
	background: rgba(0%, 0%, 0%, 40%);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), rgb(0 0 0 / 50%) 0rem 0.35rem 0.5rem;
	padding: 8px 12px;
	margin: 0;
	border-radius: 4px;
	font-size: 12px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	pointer-events: none;
	z-index: 99999;
}