/* Elements */

body {
	background-color: black;
	font-family: Regular;
}

/* Divs */

#bgvid {
	position: fixed;
	right: 0;
	top: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	background-size: cover;
	opacity: 0.15;

	filter: blur(8px);
}

/*
#container {
	width: auto;
	height: auto;

	background-color: blue;
}
*/

#panel {
	font-family: Regular;
	list-style-type: none;
	display: inline-block;
	position: fixed;

	margin: 0;
	padding: 24px;
	/* left: -2px; */
	border-radius: 0px 20px 20px 0px;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* -webkit-backface-visibility: hidden; Why is this here again? */

	/* % or px? */
	/* width: 10%; */
	width: 256px;
}

#panel li {
	border-radius: 5px;
	border: 0px solid black;
	box-shadow: 0px 0px 14px rgba(20, 20, 20, 0.5);
	font-size: 14px;
	padding: 6px;
	margin: 0;
	cursor: pointer;

	margin: 12px 0px 12px 0px;
	text-align: center;
	padding: 8px;

	transition: all 0.3s ease-in-out;

	background-color: rgba(175, 175, 175, 0.6);
	color: rgb(10, 10, 10);

	/* Disable selection, fix when standard */
	user-select: none;
	-webkit-user-select: none;
}

#panel img {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
}

#infoLeft, #infoRight {
	position: fixed;
	/* padding: 8px; */
	font-family: Light;

	/*
	border-radius: 5px;
	box-shadow: 0px 0px 14px rgba(20, 20, 20, 0.5);
	background-color: rgba(175, 175, 175, 0.8);
	color: rgb(10, 10, 10);
	*/

	color: rgba(200, 200, 200, 0.8);


	height: 254px; /* 364px for full, 270px for menu only */
	width: 240px; /* TODO: Change this */
	left: 50%;
	top: 50%;
}

#infoLeft {
	/* TODO: Do this better */
	/* transform: translate(-392px, -92px); */ /* 8px spacing */
	transform: translate(-50%, -92px);
	z-index: -5;
	transition: 0.3s ease-in-out;
}

#infoRight {
	/* TODO: Do this better */
	transform: translate(-50%, -92px); /* 8px spacing */
	z-index: -5;
	transition: 0.3s ease-in-out;
}

#panel li:hover {
	box-shadow: 0px 0px 28px rgba(200, 200, 200, 0.7);
	text-shadow: 0px 0px 8px rgba(20, 20, 20, 0.2);
	background-color: rgba(200, 200, 200, 0.7);
}

#debug {
	font-family: Regular;
	position: fixed;
	width: 50%;
	height: 10%;
	left: 50%;
	bottom: 0;
	background-color: rgba(200, 200, 200, 0.4);
	padding-left: 2%;
	transform: translate(-50%, 100%);
	border-radius: 20px 20px 0px 0px;

	transition: 0.5s ease-in-out;
}

#browser {
	position: fixed;
	font-family: Light;
	color: rgb(200, 200, 200);
	opacity: 0.6;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, 0);
}

#changelog, #browserInfo {
	position: fixed;
	font-family: Light;
	color: rgba(200, 200, 200, 0.4);
	top: 2%;
	right: 0;
	transform: translate(100%, 0);

	transition: 0.5s ease-in-out;
}

#browserInfo {
	left: 50%;
	top: 0;
	transform: translate(-50%, -150%);
	text-align: center;

	transition: 0.4s ease-in-out;
}

/* Classes */

.warning {
	font-family: Regular;
	width: 512px;
	padding: 8px;
	text-align: center;

	background-color: rgba(250, 10, 10, 0.6);
	border-radius: 0px 0px 8px 8px;
	border: 2px solid black;

	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	display: none;
}

/* Other */

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	display: none;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(200, 200, 200, 0.5);
	border-radius: 5px;
}

::selection {
	color: rgba(200, 200, 200, 0.8);
	background: rgba(20, 20, 20, 0.7);
}
