/*
--------------------------------------------------------------
--------------------------------------------------------------
  DEBUG
--------------------------------------------------------------
--------------------------------------------------------------
*/
* .debug, * .debug > div, * .debugWrapper{color: white;}
.debugWrapper{background-color: #202020;}
.debug{
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 500px;
	height: 100%;
	padding: 10px;

	box-sizing: border-box;

	font-family: 'Source Code Pro', monospace !important;
	font-size: 14px;
	z-index: 2000;
}

.debug > div{
	overflow: auto;
	position: relative;
	width: 100%; height: 100%;

	box-sizing: border-box;
	padding: 50px 20px 20px 20px;
	border-radius: 6px;
	/* background-color: #24272E; */
	background-color: white;

	color: rgba(255,255,255,.5) !important;
}
.debug > div > div{
	position: relative;
	width: 100%;
}
.debug .close{
	position: absolute;
	top: 4px; left: 4px;
	width: 70px;
	height: 40px;
	padding: 10px;
	margin: 10px;
	background-color: black !important;
	border-radius: 6px;
	border: 3px solid rgba(255,255,255,.2);

	text-align: center;
	cursor: pointer;
	color: #C18D5B;

	z-index: 2;
}

.debugDate{
	position: fixed;
	top: 0px;
	left: 0px;
	background: silver;
	padding: 10px;
	border-radius: 10px;
	z-index: 1000;
}
.debugDate > div{
	height: 30px;
}
.debugDate > div > div{
	height: 30px;
}
