@font-face {
	font-family: Ubuntu Regular;
	src: url( '/assets/webfonts/Ubuntu-Regular.ttf' );
}
html {
	scroll-behavior: smooth;
}
body {
	color: #ffffff;
	background-color: #1f1f1f;
	user-select: none;
	padding: 0px;
	margin: 0px;
	overflow-x: hidden;
	background-image: repeating-linear-gradient( 45deg, #1c1c1c, #1f1f1f 1px );
	font-family: Ubuntu Regular;
}
body:not( .signedIn ) .signedOnly {
	display: none;
}
body.signedIn .unsignedOnly {
	display: none;
}
:root {
	--primaryColor: #00a0e3;
	--secondaryColor: #13447e;
}
.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}
@keyframes rotation {
	0% { transform: rotate( 0deg ) }
	100% { transform: rotate( 360deg ) }
}
.loader-container {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: #0f0f0f;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	display: flex;
}
@keyframes loaderOut {
	from { opacity: 1 }
	to { opacity: 0 }
}
.loader-container.out {
	display: flex;
	animation: 0.25s linear loaderOut;
}
.navigation {
	position: fixed;
	top: 1rem;
	left: 1rem;
	bottom: 1rem;
	width: 15rem;
	background-color: #252525;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.15 );
}
.navigation > .brand {
	display: flex;
	height: 10rem;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 750;
}
.navigation > .brand > img {
	height: 5rem;
	filter: drop-shadow( 0px 0px 10px rgba( 0, 0, 0, 0.15 ) );
}
.nav-toggle {
	display: none;
}
.content {
	position: relative;
	margin-left: 17rem;
	margin-right: 1rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	box-sizing: border-box;
	overflow: auto;
	overflow-x: hidden;
	min-height: 100vh;
}
.navitems {
	display: flex;
	flex-direction: column;
	grid-gap: 1rem;
	padding: 0px 1rem;
	flex: 1;
	justify-content: center;
}
.navitem {
	display: flex;
	padding: 0.75rem;
	border-radius: 4px;
	background-color: #252525;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: 0.25s;
	cursor: pointer;
	grid-gap: 0.5rem;
	position: relative;
}
.navitem:hover {
	background-color: #2f2f2f;
}
.navitem.active {
	background-color: var( --primaryColor );
	cursor: default;
	box-shadow: 0px 0px 10px var( --secondaryColor );
}
.userarea {
	display: flex;
	margin: 1rem;
	align-items: center;
	grid-gap: 0.5rem;
}
.userarea > .details {
	flex: 1;
	display: none;
	grid-gap: 0.5rem;
	flex-direction: column;
}
.userarea > .logout {
	display: none;
	border-radius: 4px;
	background-color: #2f2f2f;
	aspect-ratio: 1 / 1;
	justify-content: center;
	align-items: center;
	height: 100%;
	cursor: pointer;
	transition: 0.25s;
	color: #ffffff;
}
.userarea > .logout:hover {
	background-color: var( --primaryColor );
}
.userarea > .details > span {
	background-color: #2f2f2f;
	display: flex;
	flex: 1;
}
.userarea > .details > div {
	display: flex;
	grid-gap: 0.5rem;
}
.userarea > .details > div > span {
	display: flex;
	flex: 1;
}
.jumbotron {
	display: flex;
	padding: 5rem;
	position: relative;
	animation: jumbotron 30s ease infinite;
	background: linear-gradient( 270deg, #13447e, #00a0e3 );
	background-size: 400% 400%;
	border-radius: 8px;
	overflow: hidden;
}
.jumbotron > i {
	position: absolute;
	left: -5rem;
	top: -5rem;
	font-size: 25rem;
	opacity: 0.15;
	z-index: 10;
}
.jumbotron > span {
	font-size: 5rem;
	text-shadow: 0px 0px 25px rgba( 0, 0, 0, 0.25 );
	z-index: 5;
}
@keyframes jumbotron {
	0% { background-position: 0% 50% }
	50% { background-position: 100% 50% }
	100% { background-position: 0% 50% }
}
.login-background {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	animation: jumbotron 30s ease infinite;
	background: linear-gradient( 270deg, #13447e, #00a0e3 );
	background-size: 400% 400%;
	clip-path: polygon( 0 0, 0% 100%, 100% 0 );
}
.login-content {
	position: relative;
	z-index: 1010;
	background-color: #2f2f2f;
	width: 25rem;
	border-radius: 8px;
	box-shadow: 0px 0px 15px rgba( 0, 0, 0, 0.25 );
	display: flex;
	flex-direction: column;
	padding: 2.5rem;
	grid-gap: 2.5rem;
	justify-content: center;
	align-items: center;
}
.login-content > img {
	position: absolute;
	bottom: -10rem;
	width: 15rem;
}
.columns {
	display: flex;
	grid-gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}
.column {
	display: flex;
	flex: 1;
	min-width: 20rem;
	width: 100%;
}
.column.vertical {
	flex-direction: column;
}
.card {
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	background-color: #252525;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.15 );
	padding: 1rem;
	grid-gap: 1rem;
	font-size: 0.85rem;
	height: fit-content;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}
.card:has( .card-header ) {
	margin-top: 1rem;
}
.card > .card-header {
	position: relative;
	height: 3.5rem;
	display: flex;
}
.card > .card-header > .card-header-primary {
	flex: 1;
	z-index: 10;
}
.card > .card-header > .card-header-secondary {
	display: flex;
	grid-gap: 0.5rem;
	align-items: center;
	height: 2rem;
}
.card > .card-header > .card-header-primary > i {
	display: flex;
	position: absolute;
	font-size: 2rem;
	background-color: #2f2f2f;
	border-radius: 4px;
	top: -2rem;
	width: 5rem;
	height: 5rem;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.15 );
}
.card > .card-header > .card-header-primary > span {
	display: flex;
	height: 2.25rem;
	align-items: center;
	margin-left: 6rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85rem;
	font-weight: 600;
}
.column > span.header {
	display: flex;
	flex: 1;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	position: relative;
	margin-bottom: 1.5rem;
	flex-grow: 0;
}
.column > span.header::after {
	content: '';
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: -1.5rem;
	height: 2px;
	border-radius: 2px;
	background-color: #353535;
}
.container {
	display: flex;
	flex-direction: column;
	grid-gap: 1rem;
}
.switch {
	display: flex;
	border-radius: 1rem;
	width: 4rem;
	height: 2rem;
	overflow: hidden;
	background-color: #1f1f1f;
	cursor: pointer;
	transition: 0.25s;
}
.switch > .slider {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	margin: 0.25rem;
	margin-left: 0.25rem;
	background-color: #2f2f2f;
	transition: 0.25s;
	display: flex;
	justify-content: center;
	align-items: center;
}
.switch.active {
	background-color: var( --primaryColor );
}
.switch.active > .slider {
	margin-left: 2.25rem;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.15 );
	background-color: #ffffff;
}
.switch > .slider > i {
	opacity: 0;
	transition: 0.25s;
}
.switch.processing > .slider > i {
	opacity: 0.5;
}
.max-width {
	width: 100%;
}
@keyframes pocketLoader {
	from { rotate: 0deg }
	to { rotate: 360deg }
}
.pocket-loader {
	position: relative;
	animation: pocketLoader 1s linear infinite;
}
.kv {
	display: flex;
	border-radius: 4px;
	background-color: #2f2f2f;
	padding: 1rem;
	grid-gap: 1rem;
}
.kv > .k {
	display: flex;
	flex: 1;
	justify-content: start;
	align-items: center;
	grid-gap: 0.5rem;
}
.kv > span.v {
	display: flex;
	justify-content: end;
	align-items: center;
	position: relative;
}
/*
.kv > span.v::after {
	content: 'Klikni pre skopírovanie';
	position: absolute;
	top: -2rem;
	left: 50%;
	transform: translateX( -50% );
	background-color: rgba( 0, 0, 0, 0.5 );
	backdrop-filter: blur( 4px );
	padding: 0.5rem;
	white-space: nowrap;
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 4px;
	display: none;
}
.kv > span.v:hover::after {
	display: flex;
}
.kv > span.v.copied::after {
	content: 'Skopírované';
}
*/
.kv > .v {
	display: flex;
	grid-gap: 0.5rem;
}
button {
	display: flex;
	padding: 0.75rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: 0.25s;
	cursor: pointer;
	grid-gap: 0.5rem;
	color: #ffffff;
	border: none;
	background-color: var( --primaryColor );
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.25 );
	justify-content: center;
	align-items: center;
	font-family: Ubuntu Regular;
	width: fit-content;
	height: fit-content;
}
button.secondary {
	background-color: #5f5f5f;
}
button.secondary:hover {
	background-color: #4f4f4f;
}
button:hover {
	background-color: var( --secondaryColor );
	box-shadow: 0px 0px 10px rgba( 0, 0, 0, 0.25 );
}
button.small {
	padding: 0.5rem;
}
.notifications {
	position: fixed;
	right: 0px;
	bottom: 2rem;
	display: flex;
	grid-gap: 1rem;
	flex-direction: column;
	z-index: 1300;
}
.notification {
	display: flex;
	grid-gap: 0.5rem;
	position: relative;
	min-height: 4rem;
	align-items: center;
	animation: notificationIn 0.25s linear 1;
	margin-right: 2rem;
}
@keyframes notificationIn {
	from { margin-right: -20rem; opacity: 0; }
	to { margin-right: 2rem; opacity: 1; }
}
@keyframes notificationOut {
	from { margin-right: 2rem; opacity: 1; }
	to { margin-right: -20rem; opacity: 0; }
}
.notification.out {
	animation: notificationOut 0.25s linear 1;
	opacity: 0;
}
.notification > .body {
	display: flex;
	flex-direction: column;
	background-color: #2f2f2f;
	grid-gap: 0.5rem;
	padding: 0.75rem 1rem;
	width: 17.5rem;
	border-radius: 4px;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.25 );
	justify-content: center;
}
.notification > .body > .header {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 0.75rem;
}
.notification > .timer {
	width: 4px;
	display: flex;
	border-radius: 4px;
	height: 0px;
	background-color: var( --primaryColor );
	box-shadow: 0px 0px 10px var( --secondaryColor );
	animation: 2.5s timer linear 1;
}
.notification.error > .timer {
	background-color: crimson;
	box-shadow: 0px 0px 10px darkred;
}
@keyframes timer {
	from { height: 3rem; opacity: 1; }
	to { height: 0px; opacity: 0; }
}
input {
	background-color: rgba( 0, 0, 0, 0.15 );
	text-align: center;
	outline: none;
	border: none;
	border-bottom: 2px solid rgba( 0, 0, 0, 0.25 );
	font-size: 1rem;
	color: #ffffff;
	padding: 1rem;
	transition: 0.25s;
	font-family: Ubuntu Regular;
}
input::placeholder {
	color: #999999;
}
input:focus::placeholder {
	color: transparent;
}
input:focus {
	border-color: var( --primaryColor );
}
.action-loader {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 4px;
	overflow: hidden;
	opacity: 0;
	transition: 0.15s;
	z-index: 1000;
}
.action-loader.active {
	opacity: 1;
}
.action-loader > div::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	background: var( --primaryColor );
	animation: box-1 2100ms cubic-bezier( 0.65, 0.81, 0.73, 0.4 ) infinite;
}
.action-loader > div::after {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	background: var( --primaryColor );
	animation: box-2 2100ms cubic-bezier( 0.16, 0.84, 0.44, 1 ) infinite;
	animation-delay: 1150ms;
}
@keyframes box-1 {
	0% {
		left: -35%;
		right: 100%;
	}
	60%,100% {
		left: 100%;
		right: -90%;
	}
}
@keyframes box-2 {
	0% {
		left: -200%;
		right: 100%;
	}
	60%, 100% {
		left: 107%;
		right: -8%;
	}
}
a {
	text-decoration: none;
	color: #cccccc;
	transition: 0.25s;
}
a:hover {
	color: var( --primaryColor );
}
.progress-semicircle {
	display: flex;
	position: relative;
	aspect-ratio: 1 / 1;
}
.progress-semicircle > .circle-wrapper {
	display: flex;
	aspect-ratio: 1 / 1;
	clip-path: polygon( 0 0, 100% 0, 100% 50%, 0 50% );
	padding-top: 4px;
	overflow: hidden;
}
.progress-semicircle > .circle-wrapper > .circle {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 4px solid rgba( 0, 0, 0, 0.15 );
	border-left: 4px solid var( --primaryColor );
	border-top: 4px solid var( --primaryColor );
	border-radius: 50%;
	rotate: -135deg;
}
.progress-semicircle > .descriptor {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card .progress-semicircle {
	width: 10rem;
}

@keyframes pbs {
	0% {
		background-position: 40px 0px;
	}
	100% {
		background-position: 0px 0px;
	}
}
.progress-bar {
	overflow: hidden;
	border-radius: 4px;
	background-color: rgba( 0, 0, 0, 0.15 );
	text-align: center;
}
.progress-bar > .filler {
	text-align: center;
	animation: pbs 2s linear infinite;
	background-color: var( --primaryColor );
	background-image: linear-gradient( 45deg, rgba( 255, 255, 255, 0.15 ) 25%, transparent 25%, transparent 50%, rgba( 255, 255, 255, 0.15 ) 50%, rgba( 255, 255, 255, 0.15 ) 75%, transparent 75%, transparent );
	background-size: 40px 40px;
}
.slots {
	display: flex;
	background-color: #2f2f2f;
	padding: 0.75rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.table {
	display: flex;
	flex-direction: column;
	grid-gap: 0.25rem;
	width: 100%;
}
.table-header {
	display: flex;
	background-color: #3f3f3f;
	border-radius: 4px;
	padding: 1rem;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 0.85rem;
	text-transform: uppercase;
}
.table-row {
	background-color: #2f2f2f;
	border-radius: 4px;
	display: flex;
	padding: 0.5rem;
}
.cell {
	display: flex;
	flex: 1 1 0px;
	width: 0px;
	align-items: center;
	text-align: center;
	justify-content: center;
	grid-gap: 0.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}
.footer {
	position: relative;
	margin: 1rem;
	margin-left: 17rem;
	border-radius: 4px;
	background-color: #191919;
	padding: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 0.85rem;
	color: #999999;
	flex-direction: column;
	grid-gap: 0.25rem;
	text-align: center;
}
.navgroup {
	display: flex;
	background-color: #252525;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: 0.25s;
	cursor: pointer;
	grid-gap: 1.25rem;
	flex-direction: column;
}
.navgroup > .navgroup-base {
	display: flex;
	grid-gap: 0.5rem;
	padding: 0.75rem;
	border-radius: 4px;
	transition: 0.15s;
}
.navgroup > .navgroup-base > span {
	display: flex;
	flex: 1;
}
.navgroup > .navgroup-items {
	display: none;
}
.navgroup.active > .navgroup-items {
	display: flex;
}
.navgroup-items {
	flex-direction: column;
	grid-gap: 0.5rem;
	margin-left: 1.5rem;
	position: relative;
}
.navgroup-items::after {
	content: '';
	display: flex;
	position: absolute;
	left: -0.75rem;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 4px;
	border-radius: 4px;
	background-color: #3f3f3f;
}
.navgroup.active > .navgroup-base > i {
	rotate: 180deg;
	transition: 0.15s;
}
.navgroup-base:hover {
	background-color: #2f2f2f;
}
.navgroup.active > .navgroup-base {
	background-color: var( --primaryColor );
	box-shadow: 0px 0px 10px var( --secondaryColor );
}

.userarea {
	display: flex;
	flex-direction: column;
}
.ddm {
	display: flex;
	flex: 1;
	width: 100%;
	background-color: #2f2f2f;
	border-radius: 4px;
	position: relative;
}
.ddm-main {
	display: flex;
	flex: 1;
	align-items: center;
	height: 2.5rem;
	padding: 0px 0.5rem;
	grid-gap: 0.5rem;
}
.ddm > i {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #2c2c2c;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	border-radius: 4px;
}
.ddm.up > i {
	rotate: 180deg;
}
.ddm.active > .ddm-sub {
	display: flex;
}
.ddm.active.up > i {
	rotate: 0deg;
}
.ddm-sub {
	position: absolute;
	display: none;
	left: 0px;
	right: 0px;
	background-color: #353535;
	border-radius: 4px;
	flex-direction: column;
	bottom: calc( 100% + 0.5rem );
	overflow: hidden;
}
.ddm-option {
	display: flex;
	height: 2.5rem;
	align-items: center;
	cursor: pointer;
	transition: 0.15s;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 0.75rem;
}
.ddm-option > i {
	display: flex;
	width: 2.5rem;
	height: 2.5rem;
	justify-content: center;
	align-items: center;
}
.ddm-option:hover {
	background-color: #303030;
}
.login-container {
	position: absolute;
	transform: translateX( -50% ) translateY( -50% );
	left: 50%;
	top: 50%;
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	background-color: #2f2f2f;
	padding: 2.5rem;
	justify-content: center;
	align-items: center;
	grid-gap: 2.5rem;
	text-align: center;
	max-width: 35rem;
	min-width: 15rem;
}
.login-container > img {
	width: 10rem;
}
::-webkit-scrollbar {
	width: 0.5rem;
	background-color: #0f0f0f;
}
::-webkit-scrollbar-thumb {
	background-color: #2f2f2f;
}
::-webkit-scrollbar-thumb:hover {
	background-color: var( --primaryColor );
}
.screens {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 1100;
	background-color: #1f1f1f;
	overflow: hidden;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: 0.25s;
}
.screen {
	display: none;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.screen.active {
	display: flex;
}
.screens:has( .screen.active ) {
	display: flex;
	opacity: 1;
	pointer-events: all;
}
body:has( .screen.active ), body:has( .modal-container.active ) {
	overflow: hidden;
}
.exam {
	display: flex;
	flex-direction: column;
	grid-gap: 2.5rem;
	width: 65wv;
	background-color: #2f2f2f;
	padding: 2.5rem;
	box-sizing: border-box;
}
.prompt {
	position: fixed;
	right: 2rem;
	top: 2rem;
	display: flex;
	z-index: 755;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.25 );
	border-radius: 4px;
	background-color: #2f2f2f;
	overflow: hidden;
	grid-gap: 1rem;
	height: 5rem;
	transition: 0.25s;
	min-width: 20rem;
	display: none;
}
.prompt.active {
	display: flex;
}
.prompt:hover {
	box-shadow: 0px 0px 15px rgba( 0, 0, 0, 0.5 );
}
.prompt > .icon {
	width: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #252525;
	position: relative;
}
.prompt > .icon > svg {
	position: absolute;
}
.prompt > .icon > i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.5rem;
	height: 2.5rem;
	background-color: #2f2f2f;
	border-radius: 50%;
}
.prompt > .actions {
	display: flex;
	width: 2.5rem;
}
.prompt > .details {
	display: flex;
	flex-direction: column;
	padding: 1rem 0px;
	flex: 1;
}
.prompt > .details > span {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}
button.fill {
	width: 100%;
	height: 100%;
	border-radius: 0px;
}
.log {
	display: flex;
	flex-direction: column;
	background-color: #000000;
	border-radius: 4px;
	padding: 0.25rem 0.5rem;
	color: #ffffff;
	font-family: Consolas;
	line-break: auto;
	line-height: 1.25rem;
	height: 15rem;
	overflow-y: auto;
	user-select: text;
}
.log.linebreak {
	line-break: anywhere;
}
select {
	display: flex;
	background-color: rgba( 0, 0, 0, 0.15 );
	padding: 0.25rem;
	color: #ffffff;
	border: none;
	outline: none;
}
option {
	background-color: #2f2f2f;
}
.qg-wrapper {
	display: flex;
	flex-direction: column;
	grid-gap: 1.5rem;
	width: 100%;
}
.qs-wrapper {
	display: flex;
	flex-direction: column;
	grid-gap: 0.25rem;
	background-color: rgba( 0, 0, 0, 0.25 );
	border-radius: 4px;
	padding: 0.25rem;
	flex: 1;
}
.qm-wrapper {
	display: flex;
	flex-direction: column;
	max-height: 75%;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
	overflow-y: auto;
}
.qm-header {
	display: flex;
	padding: 0.25rem;
	padding-left: 1rem;
	grid-gap: 0.25rem;
	background-color: rgba( 0, 0, 0, 0.15 );
}
.qm-header > span {
	display: flex;
	flex: 1;
	height: 100%;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 0.85rem;
}
.qm-body {
	display: flex;
	flex-direction: column;
	grid-gap: 0.25rem;
}
.qs-wrapper {
	display: flex;
	background-color: rgba( 0, 0, 0, 0.15 );
	padding: 0.5rem;
	grid-gap: 0.5rem;
}
.collapsible {
	border-radius: 4px;
	overflow: hidden;
}
.collapsible-header {
	display: flex;
	background-color: rgba( 0, 0, 0, 0.15 );
	padding: 0.5rem;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ccc;
}
.collapsible.active > .collapsible-header {
	color: #ffffff;
}
.collapsible-body {
	display: none;
	background-color: rgba( 0, 0, 0, 0.25 );
	padding: 0.5rem;
	flex-direction: column;
	grid-gap: 0.25rem;
}
.collapsible.active > .collapsible-body {
	display: flex;
}
input.small {
	padding: 0.25rem 0.5rem;
	font-size: 0.85rem;
	text-align: left;
	max-width: 100%;
}
input.small.center {
	text-align: center;
}
.qs-header {
	display: flex;
	flex-direction: row;
	grid-gap: 0.25rem;
}
.qs-header > input {
	width: 100%;
}
.qs-body {
	display: flex;
	flex-direction: column;
	grid-gap: 0.25rem;
}
.inline-joint {
	display: flex;
	flex-direction: row;
}
.inline-joint > *:first-child {
	display: flex;
	flex: 1;
	align-items: center;
}
.navgroup:has( .navitem.active ) > .navgroup-base {
	background-image: -webkit-linear-gradient( top, transparent, var( --primaryColor ) );
}
@keyframes contentIn {
	from {
		opacity: 0;
		scale: 0.75;
	}
	to {
		opacity: 1;
		scale: 1;
	}
}
.content:not( .loading ) {
	animation: contentIn 0.5s 1;
}
.suggestion {
	display: flex;
	padding: 0.5rem 0.75rem;
	justify-content: center;
	transition: 0.15s;
	cursor: pointer;
	flex: 1;
}
.suggestion:hover {
	background-color: rgba( 0, 0, 0, 0.15 );
}
.is-wrapper {
	display: flex;
	position: relative;
}
.is-items {
	display: flex;
	grid-gap: 0.25rem;
	flex-wrap: wrap;
	justify-content: center;
}
.is-item {
	display: flex;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
	color: #ccc;
	background-color: rgba( 0, 0, 0, .15 );
	cursor: pointer;
	border: 2px solid transparent;
	transition: 0.15s;
	text-align: center;
}
.is-item:hover {
	border-color: crimson;
	color: #ffffff;
}
.snowflake {
	position: fixed;
	transition: 0.1s linear;
	top: -1rem;
}
@keyframes contentLoading {
	0% {
		scale: 1;
	}
	50% {
		scale: 1.25;
	}
	100% {
		scale: 1;
	}
}
.content::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	display: flex;
	transform: translate( -50%, -50% );
	height: 2.5rem;
	width: 2.5rem;
	background-image: url( ../img/logo.png );
	scale: 0;
	opacity: 0;
	transition: 0.15s;
	filter: grayscale( 1 );
	background-size: cover;
}
.content.loading::after {
	scale: 1;
	opacity: 1;
	animation: contentLoading 1s infinite;
}
.cursor {
	position: fixed;
	top: -5rem;
	left: -5rem;
	border: 2px solid rgba( 255, 255, 255, 0.05 );
	width: 2.5rem;
	height: 2.5rem;
	display: block;
	border-radius: 50%;
	pointer-events: none;
	transform: translate( -1.25rem, -1.25rem );
	z-index: 1000000;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cursor > img {
	width: 3.5rem;
	height: 3.5rem;
}
body:has( .cursor > img ) {
	cursor: none;
}
textarea {
	display: flex;
	outline: none;
	background-color: rgba( 0, 0, 0, 0.15 );
	border: none;
	border-bottom: 2px solid rgba( 0, 0, 0, 0.25 );
	font-size: 1rem;
	color: #ffffff;
	padding: 1rem;
	transition: border-color 0.25s;
	min-width: 100%;
	max-width: 100%;
	min-height: 5rem;
	font-family: Ubuntu Regular;
	box-sizing: border-box;
}
textarea:focus {
	border-color: var( --primaryColor );
}
#particles {
	pointer-events: none;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 1000;
}

/* Winter theme */
body.winter .navitem.active::after {
	content: '';
	position: absolute;
	left: -0.15rem;
	right: -0.15rem;
	top: -0.3rem;
	background-image: url(../img/snow-layer.png);
	background-size: 100% 100%;
	height: 1rem;
}
body.winter .card::after {
	content: '';
	position: absolute;
	left: -0.15rem;
	right: -0.15rem;
	top: -0.3rem;
	background-image: url( ../img/snow-layer.png );
	background-size: 100% 100%;
	height: 2.5rem;
	pointer-events: none;
	filter: drop-shadow( 0 5px 15px rgba( 0, 0, 0, 0.25 ) );
	background-repeat: round;
}
body.winter .card-header-primary > i::after {
	content: '';
	position: absolute;
	left: -0.15rem;
	right: -0.15rem;
	top: -0.3rem;
	background-image: url(../img/snow-layer.png);
	background-size: 100% 100%;
	height: 1rem;
}
body.winter .jumbotron::after {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-image: url( ../img/scenery.png );
	opacity: 0.15;
	z-index: 1;
	background-position: center;
}

/* Halloween theme */
body.halloween .jumbotron {
	background-image: url( ../img/halloween.png );
	background-size: cover;
	animation-name: halloweenJumbotron;
}
:root:has( body.halloween ) {
	--primaryColor: darkorange;
	--secondaryColor: brown;
}
body.halloween .logo {
	filter: drop-shadow( 0px 0px 10px rgba( 0, 0, 0, 0.15 ) ) hue-rotate( 180deg );
}
@keyframes halloweenJumbotron {
	0% {
		filter: hue-rotate( 0deg );
	}
	50% {
		filter: hue-rotate( 45deg );
	}
	100% {
		filter: hue-rotate( 0deg );
	}
}
.cham {
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	z-index: 10;
	transition: 0.25s;
}
.cham.out {
	scale: 3;
	filter: brightness( 0 ) blur( 16px );
	user-select: none;
}

.exam-container {
	position: fixed;
	left: 15%;
	right: 15%;
	top: 0px;
	bottom: 0px;
	background-color: #2f2f2f;
}
.exam-details {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	padding: 1rem;
	background-color: #3f3f3f;
	border-radius: 4px;
	display: flex;
	grid-gap: 1rem;
	align-items: center;
}
.exam-wrapper {
	position: absolute;
	left: 1rem;
	top: 5.5rem;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	flex-direction: column;
	grid-gap: 2.5rem;
	overflow-y: auto;
	overflow-x: hidden;
}
.exam-details > span {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 1rem;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 0.85rem;
	text-transform: uppercase;
}
#exam-title {
	display: flex;
	flex: 1;
	justify-content: start;
}
.hide {
	display: none !important;
}
.basic-wrapper {
	display: flex;
	grid-gap: 0.5rem;
	flex-direction: column;
	width: 100%;
}
.basic-wrapper-inline {
	display: flex;
	grid-gap: 0.5rem;
	flex-direction: row;
	flex: 1;
	justify-content: center;
}
.expandable-item {
	display: flex;
	border-radius: 4px;
	background-color: #2f2f2f;
	transition: 0.25s;
	overflow: hidden;
	flex-direction: column;
}
.expandable-item > .base:hover {
	background-color: #353535;
}
.expandable-item > .base {
	display: flex;
	flex: 1;
	padding: 1rem;
	cursor: pointer;
}
.expandable-item > .base > span {
	display: flex;
	flex: 1;
}
.expandable-item > .base > i {
	transition: 0.25s;
}
.expandable-item.active > .base > i {
	rotate: 180deg;
}
.expandable-item > .expandable-content {
	display: none;
	flex-direction: column;
}
.expandable-item.active > .expandable-content {
	display: flex;
	padding: 0.5rem;
}

.modal-container {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	backdrop-filter: blur( 0px );
	background-color: transparent;
	display: none;
	justify-content: end;
	z-index: 1250;
}
.modal-container.active {
	display: flex;
	backdrop-filter: blur( 16px );
	background-color: rgba( 0, 0, 0, 0.25 );
	animation: modalContainerIn 0.25s 1;
}
@keyframes modalContainerIn {
	from {
		backdrop-filter: blur( 0px );
		background-color: transparent;
	}
	to {
		backdrop-filter: blur( 16px );
		background-color: rgba( 0, 0, 0, 0.25 );
	}
}
.modal-container.active > .modal-wrapper {
	animation: modalWrapperIn 0.25s 1;
	margin-right: 0px;
}
@keyframes modalWrapperIn {
	from {
		margin-right: -100%;
	}
	to {
		margin-right: 0px;
	}
}
.modal-wrapper {
	display: flex;
	height: 100%;
	max-width: 75%;
	min-width: 35vw;
	flex-direction: column;
	margin-right: -100%;
	overflow: hidden;
	position: relative;
	box-shadow: 0px 0px 15px rgba( 0, 0, 0, 0.5 );
}
.modal-header {
	display: flex;
	background-color: #1f1f1f;
	height: 5rem;
	padding: 0.75rem;
	box-sizing: border-box;
	grid-gap: 0.75rem;
	position: relative;
}
.modal-content {
	display: flex;
	background-color: #2f2f2f;
	flex: 1;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: auto;
}
.modal-title {
	display: flex;
	flex: 1;
}
.modal-button {
	display: flex;
	height: 3.5rem;
	width: 3.5rem;
	background-color: #151515;
	border-radius: 4px;
	cursor: pointer;
	transition: 0.25s;
	justify-content: center;
	align-items: center;
	color: #999999;
}
.modal-button:hover {
	background-color: #101010;
	color: #ffffff;
}
.modal-title {
	color: #ffffff;
	display: flex;
	align-items: center;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 0.85rem;
	text-transform: uppercase;
}
.modal-container.out > .modal-wrapper {
	animation: modalWrapperOut 0.25s 1;
	margin-right: -100%;
}
@keyframes modalWrapperOut {
	from {
		margin-right: 0px;
	}
	to {
		margin-right: -100%;
	}
}
.modal-container.out {
	animation: modalContainerOut 0.25s 1;
	backdrop-filter: blur( 0px );
	background-color: transparent;
}
@keyframes modalContainerOut {
	from {
		backdrop-filter: blur( 16px );
		background-color: rgba( 0, 0, 0, 0.25 );
	}
	to {
		backdrop-filter: blur( 0px );
		background-color: transparent;
	}
}
.modal-body {
	display: none;
	min-width: 100%;
	max-height: 100%;
	padding: 1.25rem;
	box-sizing: border-box;
	overflow: auto;
	align-items: center;
	flex-direction: column;
	grid-gap: 1.5rem;
}
.modal-body.active {
	display: flex;
	animation: contentIn 0.25s 1;
}
.modal-container.serial .modal-previous {
	margin-left: 0px;
	margin-right: 0px;
}
.modal-previous {
	margin-left: -5rem;
	margin-right: 2.5rem;
}
.modal-resizer {
	display: flex;
	height: 100%;
	width: 0.25rem;
	background-color: #999999;
	cursor: w-resize;
	margin-left: -0.25rem;
}
.suggestive-input {
	display: flex;
	position: relative;
	width: fit-content;
}
.suggestions {
	display: flex;
	position: absolute;
	left: 0px;
	right: 0px;
	top: calc( 100% + 0.25rem );
	flex-direction: column;
	background-color: #3f3f3f;
	border-radius: 4px;
	transform-origin: top;
	transform: scaleY( 0 );
	transition: 0.25s;
	box-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.25 );
	z-index: 10;
	overflow: hidden;
}
.suggestions.active {
	transform: scaleY( 1 )
}
.suggestion {
	display: flex;
	flex: 1;
	padding: 0.5rem 0.25rem;
	justify-content: center;
	transition: 0.25s;
}
.suggestion:hover {
	background-color: #4f4f4f;
}
.disabled {
	pointer-events: none;
	opacity: 0.8;
}
.announcements {
	display: flex;
	flex-direction: column;
	grid-gap: 1rem;
}
.announcement {
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	flex-direction: column;
	position: relative;
}
.announcement-hwrapper {
	background-color: #373737;
	padding: 0.75rem 1rem;
	display: flex;
	grid-gap: 0.5rem;
}
.announcement-header {
	display: flex;
	flex-direction: column;
	grid-gap: 0.25rem;
	flex: 1;
	justify-content: center;
}
.announcement-title {
	display: flex;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.announcement-details {
	font-size: 0.75rem;
	color: #999999;
}
.announcement-body {
	background-color: #2f2f2f;
	padding: 0px 1rem;
	box-sizing: border-box;
	container: size;
	position: relative;
}

.avatar {
	display: flex;
	height: 1.5rem;
	border-radius: 50%;
}

.match-question-wrapper {
	display: flex;
	flex: 1;
}
.match-question-items {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.match-question-item {
	display: flex;
	background-color: var( --secondaryColor );
	border-radius: 4px;
	margin: 1rem;
	padding: 1rem 1.25rem;
}
.matched {
	background-color: var( --primaryColor );
}
.match-question-items:nth-child( 2 ) > .match-question-item {
	justify-content: end;
}
.match-question-items:nth-child( 1 ) > .matched {
	margin-right: 0px;
	border-radius: 4px 0px 0px 4px;
}
.match-question-items:nth-child( 2 ) > .matched {
	margin-left: 0px;
	border-radius: 0px 4px 4px 0px;
}
/* Monaco editor shadow */
.monaco-editor * {
	all: unset;
}
.monaco-editor {
	overflow: hidden !important;
	max-width: 100% !important;
}
/* Fuck tinymce */
.tox-statusbar__branding {
	display: none !important;
}
.codespace-editor {
	height: 85vh;
}
.rmd-carousel {
	height: 9rem;
	display: flex;
	grid-gap: 1rem;
	justify-content: space-between;
}
.rmd-card {
	height: 9rem;
	flex: 0 0 16rem;
	overflow: hidden;
	position: relative;
	background-color: #2f2f2f;
	border-radius: 4px;
	cursor: pointer;
}
.rmd-card > iframe {
	border: none;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.rmd-card:hover > .rmd-details {
	bottom: 0px;
}
.rmd-details {
	transition: 0.25s;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	left: 0px;
	right: 0px;
	bottom: -4rem;
	height: 4rem;
	background-image: -webkit-linear-gradient( top, transparent, #252525 );
}

.vnc {
	width: unset !important;
	height: unset !important;
	overflow: hidden;
	border-radius: 4px;
}
.vnc > canvas {
	aspect-ratio: 16 / 9 !important;
	width: 100% !important;
	flex: 1;
	height: unset !important;
	display: flex;
}

.container.cs {
	/* flex-direction: row; */
	flex-direction: column;
	height: calc( 100vh - 2rem );
}
.cs-controller {
	display: flex;
	/* flex: 0 0 15rem; */
	width: 100%;
	flex-direction: column;
}
.cs-editor {
	display: flex;
	flex: 1;
}

/* ESP CS */
.esp-container {
	display: flex;
	grid-gap: 1rem;
	height: calc( 100vh - 2rem );
}
.esp-controller {
	display: flex;
	flex: 0 0 20rem;
	flex-direction: column;
	grid-gap: 1rem;
}
.esp-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.esp-ew {
	display: flex;
	flex-direction: column;
	flex: 1;
	/* height: 55vh; */
	background-color: #151515;
}
.esp-tabs {
	display: flex;
	flex-direction: row;
	height: 2.5rem;
}
.esp-editors {
	display: flex;
	height: -webkit-fill-available;
}
.esp-editor {
	display: none;
	height: 100%;
	flex: 1;
	width: 100%;
}
.esp-editor.active {
	display: flex;
}
.esp-tab {
	display: flex;
	height: 2.5rem;
	background-color: #191919;
	padding: 0px 0.75rem;
	border-top: 2px solid #999999;
	color: #999999;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	grid-gap: 0.5rem;
}
.esp-tab.active {
	background-color: #1f1f1f;
	border-color: var( --primaryColor );
	color: #ffffff;
	cursor: default;
}
.esp-tab > div {
	cursor: pointer;
	scale: 0.75;
	transition: 0.25s;
	color: #999999;
}
.esp-tab > div:hover {
	color: #ffffff;
	scale: 0.85;
}
.esp-terminal {
	display: flex;
	width: 100%;
	height: 25rem;
}

/* ADK */
.adk {
	display: flex;
	flex: 1;
	height: 100%;
	justify-content: center;
	align-items: center;
	grid-gap: 0.25rem;
	flex-wrap: wrap;
}
.adk-character {
	display: flex;
	height: 2rem;
	width: 2rem;
	background-color: #2f2f2f;
	border-radius: 4px;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	position: relative;
}
.adk-character.active {
	background-color: #3f3f3f;
}
.adk-character.wrong::after {
	content: '';
	position: absolute;
	bottom: -0.15rem;
	width: 100%;
	height: 2px;
	background-color: crimson;
}
#tooltip {
	position: fixed;
	display: flex;
	opacity: 0;
	pointer-events: none;
	z-index: 7500;
	box-sizing: border-box;
	padding: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.75rem;
	font-weight: 600;
	background-color: rgba( 0, 0, 0, 0.5 );
	border-radius: 4px;
	transition: 0.25s opacity;
	margin-left: 0.5rem;
	margin-top: 0.5rem;
	backdrop-filter: blur( 8px );
	white-space: nowrap;
}
#tooltip.active {
	opacity: 1;
}
.copy {
	cursor: copy;
}