.style-switcher{
    position:fixed;
    right:0;
    top:4rem;
    padding:.8rem;
    width: 20rem;
    border:.1rem solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index:101;
    border-radius:.5rem;
    transition: all 0.6s ease;
    transform: translateX(100%);


}
.open{
    transform: translateX(0rem);
}
.style-switcher .s-icon{
    position: absolute;
    height:4rem;
    width:4rem;
    display: flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-size:2rem;
    cursor: pointer;
    background:var(--bg-black-100);
    color:var(--text-black-900);
    right:100%;
    border:.1rem solid var(--bg-black-50);
    margin-right:2.5rem;
    transition:all 0.3s ease;
    border-radius:50%;
}

.style-switcher .style-switcher-toggler{
    top: 0;
}
.style-switcher .day-night{
    top:5.5rem;
}
.style-switcher h4{
    margin: 0 0 1rem;
    color: var(--text-black-700);
    font-size:1.6rem;
    font-weight:600;
    text-transform:capitalize;
    user-select: none;

}
.style-switcher .colors{
display: flex;
flex-wrap:wrap;
justify-content: center;
}
.style-switcher .colors span{
    display:inline-block;
    height:3rem;
    width:3rem;
    margin:.2rem;
    user-select: none;
    cursor: pointer;
    border-radius:50%;
}
.style-switcher .color-1{
    background-color: #ec1839;
}
.style-switcher .color-2{
    background-color: #fa5b0f;
}
.style-switcher .color-3{
    background-color: #37b182;
}
.style-switcher .color-4{
    background-color: #1854b4;
}
.style-switcher .color-5{
    background-color: #f021b2;
}