/* Color Style Switcher */

#color-style-switcher div h3 {
    color: #2d2d2d;
    font-size: 17px;
    margin: 8px 3px 12px;
}

#color-style-switcher {
    background: #fff;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.14);
    left: -145px;
    position: fixed;
    top: 250px;
    width: 150px;
    z-index: 9999;
}

#color-style-switcher div {
    padding: 5px 10px;
}

#color-style-switcher .bottom {
    padding: 0;
}

#color-style-switcher .bottom a.settings {
    background-color: #fff;
    box-shadow: 7px 2px 14px 0 rgba(0, 0, 0, 0.14);
    display: block;
    height: 45px;
    position: absolute;
    right: -45px;
    top: 0;
    width: 45px;
    text-align: center;
}

#color-style-switcher .bottom a i {
    font-size: 30px;
    line-height: 45px;
}

#color-style-switcher select {
    background: none repeat scroll 0 0 #F6F6F6;
    border: 1px solid #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
    padding: 5px 10px;
    width: 150px;
}

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: 0px;
    -webkit-border-radius: 0px;
}

ul.colors li a.active {
    position: relative;
}

ul.colors li a.active:after {
    color: #fff;
    content: "\e938";
    font-family: "LineIcons";
    font-size: 12px;
    right: 12px;
    position: absolute;
    top: 6px;
}

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: #0dcdbd;
    /*  green Light  */
}

ul.colors .color2 {
    background: #08a191;
    /* purple */
}

ul.colors .color3 {
    background: #03A9F4/* sky */
}

ul.colors .color4 {
    background: #4064d7;
    /* blue*/
}

ul.colors .color5 {
    background: #ED5437;
    ;
    /* red */
}

ul.colors .color6 {
    background: #FFC107;
    /* yellow */
}

.settings .fa {
    transform: rotate(30deg);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    animation: gear 2s infinite;
}

@keyframes gear {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}