#style-switcher {
	position: fixed;
	left: -45px;
	top: 75px;
	bottom: 0;
	z-index: 99;
	color: #999;
	width: 45px;
}
#style-switcher * {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	list-style: none;
	transition: all 0.3s;
}
#style-switcher .btn-toggle,
#style-switcher .panel-title > span {
	position: relative;
	background: #000;
	border: none;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	z-index: 99;
	right: -45px;
}
#style-switcher .btn-toggle:hover {
	color: #fff;
}
#style-switcher .btn-toggle .fa,
#style-switcher .panel-title > span .fa {
	font-size: 22px;
	line-height: 45px;
}
#style-switcher .panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 220px;
	background: #222;
}
#style-switcher .panel-title {
	cursor: pointer;
	font-size: 13px;
	font-weight: bold;
	background: #000;
	color: #fff;
	height: 45px;
	line-height: 45px;
	padding: 0 0 0 20px;
	text-transform: uppercase;
}
#style-switcher .panel-title > span {
	position: absolute;
	right: 0;
	top: 0;
	left: auto;
}
#style-switcher .panel-content {
	padding: 20px;
}

#style-switcher li:not(:first-child) {
	margin-top: 20px;
}

#style-switcher .option-title {
	color: #ccc;
	text-transform: uppercase;
	font-size: 12px;
}
#style-switcher .option-desc {
	font-size: 11px;
	color: #666;
}

#style-switcher .option-fields {
	margin-top: 10px;
}
#style-switcher .option-fields:after {
	content: '';
	display: table;
	clear: both;
}
#style-switcher .option-fields label {
	cursor: pointer;
	display: block;
	width: 41px;
	min-height: 41px;
	margin-right: 5px;
	margin-bottom: 5px;
	float: left;
}
#style-switcher .option-fields label input {
	display: none;
}
#style-switcher .option-fields label span {
	text-align: center;
	display: block;
	opacity: 0.5;
	font-size: 11px;
}
#style-switcher .option-fields label input:checked + span,
#style-switcher .option-fields label input:checked + span + span {
	opacity: 1;
	color: #fff;
}

/**
 * Patterns
 */
#style-switcher li.patterns {
	opacity: 0;
	overflow: hidden;
	max-height: 0;
	margin-top: 0;
}
.layout-boxed #style-switcher .patterns {
	opacity: 1;
	max-height: 150px;
	margin-top: 20px;
}
#style-switcher .patterns .option-fields label,
#style-switcher .patterns .option-fields span {
	width: 30px;
	height: 30px;
	line-height: 30px;
	min-height: 30px;
}

/**
 * Colors
 */
#style-switcher .colors .option-fields label,
#style-switcher .colors .option-fields span,
#style-switcher .patterns .option-fields label,
#style-switcher .patterns .option-fields span {
	width: 30px;
	height: 30px;
	line-height: 30px;
	min-height: 30px;
}
#style-switcher .colors .option-fields span,
#style-switcher .patterns .option-fields span {
	opacity: 1;
	display: block;
}
#style-switcher .colors .option-fields .fa,
#style-switcher .patterns .option-fields .fa {
	opacity: 0;
	text-shadow: 0 0 2px rgba( 0, 0, 0, 1 );
}
#style-switcher .colors .option-fields input:checked + span .fa,
#style-switcher .patterns .option-fields input:checked + span .fa {
	opacity: 1;
}

#style-switcher .actions {
	text-align: center;
	margin-top: 5px;
	padding-top: 10px;
}
#style-switcher .reset {
	border: none;
	padding: 5px 20px;
	background: #333;
	color: #666;
}
#style-switcher .reset:hover {
	background: #fff;
	color: #333;
}

/**
 * Active state
 */
#style-switcher.active .panel {
	right: -220px;
}
#style-switcher.active > .btn-toggle {
	right: 0;
}