.style-switcher {
    position: fixed;
    top: 100px;
    background-color: #ffffff;
    right: 0;
    z-index: 999;
    padding: 15px;
    border: 1px solid #d4d4e3;
    border-right: none;
    border-radius: 0 0 0 5px;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -ms-border-radius: 0 0 0 5px;
    -o-border-radius: 0 0 0 5px;
    width: 150px;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}
.style-switcher.open {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}
.style-switcher h5 {
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    shape-margin: 8px;
    border-bottom: 1px solid #d4d4e3;
}
.style-switcher ul {
    margin: 0;
    display: block;
}
.style-switcher ul li {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 2px;
    cursor: pointer;
}
.style-switcher .toggle-style-switcher {
    position: absolute;
    height: 45px;
    width: 45px;
    background-color: #ffffff;
    left: -45px;
    top: -1px;
    border: 1px solid #d4d4e3;
    border-right: none;
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    text-align: center;
    cursor: pointer;
}
.style-switcher .toggle-style-switcher i {
    line-height: 43px;
    font-size: 20px;
}
