html{
    font-size:57%;
    overflow-x:hidden;
}
.style-switcher{
    position:fixed;
    top:0.9rem;
    right:1rem;
    width:20rem;
    border:1px solid var(--black);
    background:var(--gray);
    z-index:101;
    border-radius:0.5rem;
    height:auto;
    transform: translateX(110%);
    transition: all 0.7s ease;
}
.style-switcher.open{
    transform:translateX(-2.5rem);
    transition:transform 0.4s ease;
}
.style-switcher .s-icon{
    position: absolute;
    width:4rem;
    height:4rem;
    text-align: center;
    font-size:2rem;
    right:114%;
    top:-0.1rem;
    background-color: var(--gray);
    color: var(--bg-black-900);
    border-radius:50%;
    display: flex;
    align-items:center;
    justify-content: center;
    cursor: pointer;
}
.style-switcher .day-night.s-icon{
    top:4.5rem;
}

.style-switcher h4{
    margin:0 0 4rem;
    color:var(--bg-black-900);
    text-align: center;
    font-size:1.6rem;
    font-weight:600;
    text-transform: capitalize;
    margin-bottom:1rem;
}
/* .style-switcher .colors{

} */
.style-switcher .colors span{
    display: inline-block;
    height:3rem;
    width:3rem;
    border-radius:50%;
    border:0.1rem solid none;
    margin-left:0.5rem;
    cursor: pointer;
}
span.color1{
    background-color:#ec1839;
}
span.color2{
    background-color: #1854b4;
}
span.color3{
    background-color: #37b182;
}
span.color4{
    background-color: #fa5b0f;
}
span.color5{
    background-color: #f021b2;
}


