.style-switcher{
    position: fixed;
    right: 0;
    top: 20px;
    padding: 10px;
    width: 200px;
    bottom: var(--border);
    background: var(--bg-black-100);
    z-index: 1000;
    border-radius: 5px;
    transition: all .3s ease;
    transform: translateX(100%);
}
.style-switcher.open{
    transform: translateX(-25px);
}
.style-switcher .s-icon{
    position: absolute;
    height: 30px;
    width: 30px;
    text-align: center;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: var(--border);
    border-radius: 50%;
    margin-right: 25px;
    cursor: pointer;
    transition: all .3s ease;
}
.style-switcher .s-icon i{
    line-height: 30px;
}
.style-switcher .style-switcher-toggler{
    top: 0px;
}
.style-switcher .day-night{
    top: 50px;
}
.style-switcher h4{
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-black-700);

}
.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%;
    border:var(--border);
}
.style-switcher .color-1{
    background: #ec1839;
}
.style-switcher .color-2{
    background: #2f9fc8;
}
.style-switcher .color-3{
    background: #5841ac;
}
.style-switcher .color-4{
    background: #ae29a7;
}
.style-switcher .color-5{
    background: #a85919;
}