@charset "UTF-8";
/** @author ivanmoreno 
| http://www.plus360degrees.com/
**/

body {
	margin:0px;
	background-color: #eee;
	overflow: hidden;
	font-size: 0.8em;
	font-family: 'Fjalla One', sans-serif;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#loading {
	position: absolute;
	width: 100%;
	height: 50px;
	top: 50%;
	margin-top: -25px;
	color: #212121;
	text-align: center;
	opacity: 0;
	pointer-events: none;
}

#toolBar {
	width: 100%;
	height: 50px;
	bottom: 0;
	z-index: 2;
	position: absolute;
}

.colorButton {
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: -40px;
}

.button {
	text-align: center;
	height: 40px;
	width: 70px;
	position: absolute;
	background-image: -webkit-linear-gradient(#333, #0c0c0c );
	background-image: -moz-linear-gradient(#333, #0c0c0c );
	background-image: -o-linear-gradient(#333, #0c0c0c );
	background-image: -ms-linear-gradient(#333, #0c0c0c );
	background-image: linear-gradient(#333, #0c0c0c);
	color: #eee;
	line-height: 40px;
	bottom: -40px;
}

.colorButton, .button {
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	-ms-border-radius: 20px;
	border-radius: 20px;

	-webkit-transition: -webkit-box-shadow 0.2s linear;
	-o-transition: -o-box-shadow 0.2s linear;
	-moz-transition: -moz-box-shadow 0.2s linear;
	-ms-transition: -ms-box-shadow 0.2s linear;
	transition: box-shadow 0.2s linear;
}

.colorButton:hover, .button:hover {
	cursor: pointer !important;
	-webkit-box-shadow: 0 0 6px 1px #000;
	-moz-box-shadow: 0 0 6px 1px #000;
	-ms-box-shadow: 0 0 6px 1px #000;
	-o-box-shadow: 0 0 6px 1px #000;
	box-shadow: 0 0 6px 1px #000;

	-webkit-transition: -webkit-box-shadow 0.2s linear;
	-o-transition: -o-box-shadow 0.2s linear;
	-moz-transition: -moz-box-shadow 0.2s linear;
	-ms-transition: -ms-box-shadow 0.2s linear;
	transition: box-shadow 0.2s linear;
}
