/* Color Style Switcher */

ul.colors {
    list-style: none outside none;
    margin: 0 0 10px;
    overflow: hidden;
	padding:0;
}
ul.colors li {
    float: left;
    margin: 2px;
}
ul.colors li a {
    cursor: pointer;
    display: block;
    height: 35px;
    width: 35px;
	border-radius:2px;
	-webkit-border-radius:2px;
}

ul.colors li a.active {
    position: relative;
}
ul.colors li a.active:after {
    color: #fff;
    content:"\f00c";
    font-family: "FontAwesome";
    font-size: 10px;
    right: 12px;
    position: absolute;
    top: 9px;
}
ul.colors li a.color1.active:after, ul.colors li a.color8.active:after{
    color:#FFFFFF;
}
@media only screen and (max-width: 500px) {
    #color-style-switcher {
        display: none;
    }
}

/* Color Style Switcher  End */



/* Colors */

/* light-version */
ul.colors .color1 {
    background: #F97794;  /* preset */    
}
ul.colors .color2 {
    background: #1AB7D8;  /* blue */
}
ul.colors .color3 {
     background: #1abc9c; /* turquoise */
}
ul.colors .color4 {
     background: #f39c12;  /* orange */
}
ul.colors .color5 {
     background: #8e44ad;  /* Wisteria */
}
ul.colors .color6 {
     background: #e74c3c;  /* Alizarin */
}
