.styleswitcher {
    display: block;

    position: fixed;
    top: 0;
    bottom: 0;
    left: -195px;

    z-index: 2147483646;

    height: 300px;
    margin: auto;
    padding: 0;

    -webkit-transition: all .2s ease-in;
       -moz-transition: all .2s ease-in;
        -ms-transition: all .2s ease-in;
         -o-transition: all .2s ease-in;
            transition: all .2s ease-in;
}

.styleswitcher.styleswitcher-showed {
    left: 0;
}

.styleswitcher-content {

    display: block;
    float: left;

    width: 195px;
    max-width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .7);
    overflow-y: auto;

    /*-webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, .15);*/
       /*-moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, .15);*/
            /*box-shadow: 3px 3px 3px rgba(0, 0, 0, .15);*/
}

.styleswitcher-block {
    padding: 10px;
    margin-bottom: 10px;
}

.styleswitcher-button {

    opacity: .8;

    display: block;
    float: left;

    width: 32px;
    height: 32px;

    cursor: pointer;

    line-height: 36px;
    text-align: center;

    background: #fff;

    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.styleswitcher-button:hover {
    opacity: 1.0;
}

.styleswitcher-button .fa {
    font-size: 18px;
}

.styleswitcher-title {

    padding: 10px;

    margin-top: 0;
    margin-bottom: 10px;

    color: #fff;
    font-size: 16px;
    background: #333;
}

.styleswitcher-list-colors {
    list-style: none;
    margin: 0;
    padding: 0;
}

.styleswitcher-list-colors li {
    display: inline-block;
}

.styleswitcher-list-colors a,
.styleswitcher-list-colors a:hover,
.styleswitcher-list-colors a:visited,
.styleswitcher-list-colors a:focus {
    text-decoration: none;
}

.styleswitcher-list-colors a {
    display: block;
    width: 32px;
    height: 32px;
}

.styleswitcher-list {
    padding: 0 0 0 15px;
}

.styleswitcher select {

    width: 100%;
    padding: 7px 10px;

    border: none;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}