
    /**
    * STYLE SWITCHER
    */

    #style-switcher{
    position: fixed;
    left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top: 2px solid;
    border-right: 2px solid;
    border-bottom: 2px solid;
    border-color: rgba(0,0,0,0.07);
    top: 200px;
    z-index: 99;
    width: 150px;
    background: white;
    padding: 12px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.35);
    -moz-box-shadow:    4px 4px 5px 0px rgba(50, 50, 50, 0.35);
    box-shadow:         4px 4px 5px 0px rgba(50, 50, 50, 0.35);
    }

    #style-switcher.outside{
    left: -155px;
    }

    #style-switcher #style-btn{
    cursor: pointer;
    width: 45px;
    height: 40px;
    background: white;
    top: 20px;
    right: -43px;
    position: absolute;
    border-top: 2px solid rgba(0,0,0,0.07);
    border-right: 2px solid rgba(0,0,0,0.07);
    border-bottom: 2px solid rgba(0,0,0,0.07);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.35);
    -moz-box-shadow:    4px 4px 5px 0px rgba(50, 50, 50, 0.35);
    box-shadow:         4px 4px 5px 0px rgba(50, 50, 50, 0.35);
    }

    #style-switcher #style-btn:before{
    content: "\f013";
    font-family: 'FontAwesome';
    display: block;
    font-size: 28px;
    line-height: 1.2em;
    color: #888;
    left: 14px;
    top: 1px;
    position: absolute;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: iconRotate 2s linear infinite;
    animation: iconRotate 2s linear infinite;
    }

    .theme-skin{
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 3px;
    border: 2px solid rgba(0,0,0,0.07);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    }

    .theme-skin:hover{
    border-color: white;
    }

    #skin-orange{
    background: #ffa800;
    }
    #skin-blue{
    background: #2A2A3C;
    }
    #skin-chocolate{
    background: #40231C;
    }
    #skin-brownish{
    background: #B7593F;
    }
    #skin-darkblue{
    background: #45667F;
    }
    #skin-lightblue{
    background: #009ADA;
    }
    #skin-darkred{
    background: #9D2C2B;
    }
    #skin-tomato{
    background: #E85A45;
    }
    #skin-red{
    background: #f34837;
    }
    #skin-green{
    background: #759F8C;
    }
    #skin-grey{
    background: #A5A692;
    }
    #skin-yellow{
    background: #ffd300;
    }

    @keyframes iconRotate{
    0%{
    -moz-transform: rotate3d(0,0,1,0deg);
    transform: rotate3d(0,0,1,0deg);
    }
    100%{
    -moz-transform: rotate3d(0,0,1,360deg);
    transform: rotate3d(0,0,1,360deg);
    }
    }

    @-webkit-keyframes iconRotate{
    from{
    -webkit-transform: rotate3d(0,0,1,0deg);
    }
    to{
    -webkit-transform: rotate3d(0,0,1,360deg);
    }
    }

