body {
	background: #2B2B2B;
	font-family: Lato, sans-serif;
  	font-weight: 100;
}
canvas {
	background: #fff;
	display: block;
	margin: 50px auto 10px;
	border-radius: 5px;
	cursor: crosshair;
}
.controls {
	min-height: 60px;
	margin: 0 auto;
	width: 600px;
	border-radius: 5px;
	overflow: hidden;
}
ul {
	list-style:none;
	margin: 0;
	float: 	left;
	padding: 10px 0 20px;
	width: 100%;
	text-align: center;
}

ul li, #newColor {
	display:block;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	cursor: pointer;
	border: 0;
}

ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px 10px;
}

.red {
	background: #fc4c4f;
}

.blue {
	background: #4fa3fc;
}

.yellow {
	background: #ECD13F;
}

.selected {
	border: 5px solid #fff;
}
button {
	background: #68B25B;
	box-shadow: 0 3px 0 0 #6A845F;
	color: #fff;
	outline: none;
	cursor: pointer;
	text-shadow: 0 1px #6A845F;
	display: inline-block;
	font-size: 16px;
	line-height: 40px;
}
#revealColorSelect, #clearCanvas, #save {
	border: none;
	border-radius: 5px;
	margin: 10px auto;
	padding: 5px 20px;
	width: 160px;
}
.buttons{
text-align:center;
}
.stroke{
  text-align:center;
  color:#fff;
}

.stroke label{
	display: inline-block;
	vertical-align: middle;
}

.stroke input{
	display: inline-block;
	vertical-align: middle;
}

/* New Color Palette */
#colorSelect {
	background: #fff;
	border-radius: 5px;
	clear: both;
	margin: 20px  0;
	padding: 10px;
	width: 305px;
	position: relative;
	display:none;
}
#colorSelect:after {
	bottom: 100%;
	left: 40%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -10px;
}

#newColor {
	width: 80px;
	height: 80px;
	border-radius: 3px;
	box-shadow: none;
	float: left;
	border: none;
	margin: 10px 20px 20px 10px;

}
.sliders p {
	margin: 8px 0;
	vertical-align: middle;
}
.sliders label {
	display: inline-block;
	margin: 0 10px 0 0;
	width: 35px;
	font-size: 14px;
	color: #6D574E;
}
.sliders input {
	position: relative;
	top: 2px;
}
#colorSelect button {
	border: none;
	border-top: 1px solid #6A845F;
	border-radius: 0 0 5px 5px;
	clear: both;
	margin: 10px -10px -7px;
	padding: 5px 10px;
	width: 325px;
}

#gallery{
	background: #fff;
}
#gallery img{
	width: 100%;
}
.imgDiv{
	width: 20%;
	border-right: 1px solid #e5e5e5;
	padding: 1%;
	display: inline-block;
	position: relative;
}
.imgDiv span{
	position: absolute;
	right: 1%;
	top: 1%;
	cursor: pointer;
}

.message{
	width: 100%;
	text-align: center;
	position: fixed;
	bottom: 0;
	color: #fff;
}

@media only screen and (max-width: 600px){
   .message{
   	font-size: 2.2em;
   } 	
}

