body {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-family: Arial;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
}

#layersBox {
	width: 300px;
	position: absolute;
	right: 0;
	top: 20px;
	z-index: 1000;
	box-sizing: border-box;
}

.layerBox {
	width: 100%;
	background: #535353;
	color: #f0f4f5;
	padding: 5px;
	clear: both;
	float: left;
	margin-top: 5px;
	font-size: 15px;
	border: 1px solid #323232;
	border-right: 0;
	cursor: pointer;
	box-sizing: border-box;
	border-radius: 5px 0 0 5px;
}

.layerBox.slct {
	background: #596677;
}

.layerBox div, .layerControls div {
	float: left;
	margin-right: 10px;
	margin-left: 10px;
}

.layerBox div.lock {
	float: right;
	margin-right: 20px;
}

.layerControls, .sliderBox, .colorBox {
	width: 100%;
	background: #464646;
	color: #b7b7b7;
	margin-top: 10px;
	padding: 5px;
	float: left;
	box-sizing: border-box;
	border-radius: 5px 0 0 5px;
}

.layerControls div.disabled {
	color: #898989;
}

#toolsBox {
	width: 100px;
	position: absolute;
	left: 15px;
	top: 25px;
	z-index: 1000;
	box-sizing: border-box;
}

.tool {
	background: #535353;
	color: #f0f4f5;
	text-align: center;
	padding: 5px;
	width: 90%;
	margin-bottom: 5px;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	
	-webkit-transition: width 500ms ease;
	-moz-transition: width 500ms ease;
	-ms-transition: width 500ms ease;
	-o-transition: width 500ms ease;
	transition: width 500ms ease;
}

.tool.slct {
	width: 100%;
	background: #596677;
}

input[type='color'], input[type='color']:focus {
	padding: 0;
	border: 0;
	outline: 0;
	background: none;
	width: 26px;
	height: 30px;
}

input[type='color']::-webkit-color-swatch {
	border: 0;
	box-shadow: inset 0 0 0 1px black, inset 0 0 0 2px white;
}

input[type='color'].selected::-webkit-color-swatch {
	box-shadow: inset 0 0 0 1px black, inset 0 0 0 2px white, 0 0 0 1px rgba(200, 200, 200, 0.6);
}

#help, #loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #464646;
	box-sizing: border-box;
	overflow: hidden;
	padding: 10px;
	z-index: 9998;
	color: #FFF;
}

#loading {
	z-index: 10000;
}

#helpMe {
	position: absolute;
	right: 10px;
	bottom: 10px;
	border-radius: 10px;
	width: 50px;
	height: 50px;
	text-align: center;
	box-sizing: border-box;
	padding-top: 9px;
	background: #464646;
	color: #FFF;
	font-size: 30px;
	z-index: 9999;
	cursor: pointer;
}