@charset "utf-8";

#customizer {
	position: fixed;
	top: 15%;
	left: -340px;
	width: 340px;
	z-index: 3000;
	background-color: #FFF;
	padding: 20px;
	color: #000;
	text-align: center;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#customizer.active {
	left: 0;
}

#customizer hr {
	background-color: #e8e8e8;
	margin: 15px 0;
}

#customizer p {
	margin: 20px 0 12px 0;
}

#customizer strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
}

#customizer .color-box {
	display: inline-block;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 10px 6px;
	border: 2px transparent solid;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	
	&:hover {
		border-color: #e1e1e1;
	}
}

#customizer .color-box-blue {
	border-color: #336799;
	background-color: #336799;
}

#customizer .color-box-brown {
	border-color: #b3a580;
	background-color: #b3a580;
}

#customizer .color-box-gray {
	border-color: #c2c2c2;
	background-color: #c2c2c2;
}

#customizer .color-box-yellow {
	border-color: #f8c51e;
	background-color: #f8c51e;
}

#customizer .note {
	font-weight: 300;
	font-size: 11px;
	color: #969696;
}

#customizer .pattern-box {
	display: inline-block;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 10px 6px;
	border: 1px #c3c3c3 solid;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	
	&:hover {
		-webkit-box-shadow: 0 0 5px #000;
		-moz-box-shadow: 0 0 5px #000;
		box-shadow: 0 0 5px #000;
	}
}

#customizer .pattern-box-bricks {
	background-image: url('');
}

#customizer .pattern-box-feathers {
	background-image: url('');
}

#customizer-trigger {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	right: -50px;
	line-height: 50px;
	font-size: 27px;
	background-color: #FFF;
	cursor: pointer;
}
