.color-schemes {
	overflow: hidden;
	margin: 0 -5px;
	padding: 7px 0 55px;
}
.color-schemes li {
	margin: 0 5px 16px;
	float: left;
	list-style: none;
	text-align: center;
}
.color-schemes li a {
	color: #fff;
	outline: none;
	text-decoration: none;
}
.color-schemes li .color-triangle {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 51px 30px 0;
	border-color: #fff transparent transparent transparent;
}
.color-schemes li .color-label {
	letter-spacing: 2px;
	display: block;
	padding-top: 9px;
	font-size: 11px;
	line-height: 14px;
	text-transform: uppercase;
}
.color-schemes li .color-triangle.aqua {
	border-top-color: #aae2ee;
}
.color-schemes li .color-triangle.pink {
	border-top-color: #eeaaaa;
}
.color-schemes li .color-triangle.blue {
	border-top-color: #8badd9;
}
.color-schemes li .color-triangle.flower {
	border-top-color: #dcaaee;
}
.color-schemes li .color-triangle.honey {
	border-top-color: #d4ba7b;
}
.backgrounds {
	margin: 0 -10px 0 0;
	padding: 0;
}
.backgrounds li {
	list-style: none;
	margin: 0;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 3px;
}
.backgrounds li a {
	display: inline-block;
	color: #4c4c51;
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
	text-decoration: none;
}
.backgrounds li a .circle {
	position: relative;
	margin-top: 2px;
	vertical-align: top;
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 3px solid #4c4c51;
	border-radius: 10px;
	margin-right: 11px;
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}
.backgrounds li a:hover,
.backgrounds li a.current {
	color: #fff;
}
.backgrounds li a:hover .circle {
	border-color: #fff;
}
.backgrounds li a.current .circle:before {
	display: block;
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 6px;
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
}
@-webkit-keyframes cogrotate {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {		
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-moz-keyframes cogrotate {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {		
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-o-keyframes cogrotate {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {		
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes cogrotate {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {		
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
#config-show:hover {
    -webkit-animation-name: cogrotate; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: cogrotate; 
    -moz-animation-duration: 2s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
}
.visible #config-show:hover {
	-moz-animation-name: none;
	-webkit-animation-name: none;
}