.style-switcher{
    position:fixed;
    right:0;
    top: 130px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--colo-white-2);
    background: var(--colo-white-3);
    z-index:101;
    border-radius:5px;
    transition:all 0.3s ease;
    transform:translateX(100%);
}
.style-switcher.open{
    transform:translateX(-25px);
}
.style-switcher .s-icon{
    position:absolute;
    height:40px;
    width:40px;
    text-align:center;
    font-size:20px;
    background: var(--colo-white-3);
    color: var(--colo-dark-1);
    right:100%;
    border:1px solid var(--colo-white-2);
    margin-right:25px;
    cursor:pointer;
    transition:all 0.3s ease;
    border-radius:50%;
}
.style-switcher .s-icon i {
    line-height: 40px;
}
.style-switcher .style-switcher-toggler{
    top:0;
        animation: icon 3s linear infinite;
}
@keyframes icon {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(-360deg);
    }
}
.style-switcher h4{
    margin:0 0 10px;
    color:var(--colo-dark-2);
    font-size:16px;
    font-weight:600;
    text-transform:capitalize;
}
.style-switcher .colors{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.style-switcher .colors span{
    display:inline-block;
    height:30px;
    width:30px;
    border-radius: 50%;
    margin-bottom:6px;
    cursor:pointer;
}
.style-switcher .color-1{
    background: #0095ff ;
}
.style-switcher .color-2{
    background: #8158fc ;
}
.style-switcher .color-3{
    background: #268534 ;
}
.style-switcher .color-4{
    background: #db4444 ;
}
.style-switcher .color-5{
    background: #fa5b0f ;
}
