*, *:before, *:after {
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	zoom: reset;
	
}

body{
	background-color: black;
	padding:0px;
	margin:0px;
	overflow:hidden;
	font-family: Roboto, Arial;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;

}

.layer{
	position:absolute;
	width:100vw;
	height:100vh;
	background-repeat:no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size:cover;
}

.layer.top-layer {
	z-index:1;
}




.button {
	border: 2px solid #4d4d4d;
	border-radius:4px;
	display:inline-block;
	xwidth:60%;
	padding:5px;
	xmargin:5px auto 5px auto;
	margin:5px;

	background-color:#111d2d;
	cursor:pointer;
	xtransition: transform 0.05s;
	xcolor:red;
	xbackground:black;
	box-shadow:2px 2px 2px 0px rgba(0, 0, 0, 0.8);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height:0.9;

	xborder:1px solid red;
	font-size:0.7em;
}

.button-row {
	xborder:1px solid lime;
	max-height:30px;
	display: flex;
	justify-content: start;
	align-items: center;
	padding-bottom:5px;
}

.button-row > .button {
	height:100%;
	width:30%;
}

/* Font Awesome icons are i-elements */
.button > i {
	margin-right:5px;
}

.button:hover {
	background-color:#0c0c0c;
	xcolor:rgb(0, 192, 0);
}

.button:active {
	transform: translateY(2px);
	xcolor:red;
	background-color:#191919;
	box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.8);
}

.button.half  {
	xwidth: 40%;
	xdisplay:inline-block;

}


#loading-label {
	font-size:3em;
	text-align:center;
	color:grey;
	text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index:4;
	pointer-events:none;
}

#sidebar {
	position:fixed;
	left:0;
	z-index:2;
	border: 3px solid rgb(48, 48, 48);
	xborder-top: none;
	xborder-left: none;
	box-shadow:3px 3px 3px 0px rgba(0, 0, 0, 0.5);
	width: 600px;
	height:100vh;
	overflow:hidden;
	xpadding:20px 20px 20px 20px;
	color:rgb(204, 204, 204);
	background-color:rgba(0, 0, 0, 0.6);
	background-image: url('../img/cross.png');
	transition: transform 200ms;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	box-shadow:inset 5px 5px 5px 0px rgba(0, 0, 0, 0.8), inset 0px 0px 5px 5px rgba(0, 0, 0, 0.5);
}

#sidebar.hidden {
	transform: translateX(-600px);
}

#hide-sidebar-big {
	xborder:1px solid red;
	position:absolute;
	xfloat:left;
	left:0;
	margin-left:600px;
	width:10%;
	height:100%;
	z-index:2;
	font-size:3em;
	color:rgb(199, 199, 199);
	text-shadow:0px 0px 5px  rgba(0, 0, 0, 0.8);
	background-color: rgba(0, 0, 0, 0.3);
	opacity:0;
	cursor:pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 200ms, margin-left 200ms;
}

#hide-sidebar-big.hidden {
	margin-left:0px;
}

#hide-sidebar-big:hover {
	opacity:1;
} 


.button#hide-sidebar {
	width:auto;
} 

#sidebar > .top {
	xborder:1px solid lime;
	xheight:4%;
	xmax-height:45px;
	height:40px;
	xmargin-bottom:10px;
	background-color:#0c131e;
	padding: 0px 5px 0px 5px;
	width:100%;
	display:flex;
	flex-direction:row;
	justify-content: space-between;
	align-items: center;
	font-family: Roboto Mono;
}

#sidebar > #top > .title {
	padding:5px;
	xfont-size:1.3em;
	color:rgb(112, 112, 112);
	text-shadow:3px 3px 3px rgba(0, 0, 0, 0.5);

}


