/*==============================================================================
    Style switcher
===============================================================================*/
#style-switcher {
    z-index: 9999;
    position: fixed;
    top: 100px;
    left: -250px
}
#style-switcher-toggle {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 100%;
    width: 44px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
#style-switcher-panel {
    padding: 15px;
    z-index: 1;
    position: relative;
    width: 250px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
#style-switcher-panel label {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.1em;
    font-size: 12px
}
#style-switcher-panel .form-group select {
    padding: 0.1em;
    font-size: 12px
}
#style-switcher-panel .form-group {
    margin-bottom: 0.5em
}
#style-switcher-panel:before,
#style-switcher-panel:after {
    content: " ";
    display: table
}
#style-switcher-panel:after{
    clear: both
}