.style-switcher{
    position:fixed;
    right:0;
    top: 60px;
    padding:15px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 5px;
    transition:all 0.3s ease;
    transform: translateX(100%);
}
.style-switcher .s-icon{
    position: absolute;
    height:45px;
    width:45px;
    text-align: center;
    font-size: 25px;
    background-color: var(--skin-color);
    color: var(--text-black-900);
    right:100%;
    border:1px solid var(--bg-black-50);
    margin-right:30px;
    cursor:pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.style-switcher .s-icon i{
    line-height: 48px;
}

.style-switcher .day-night{
    top: 20px;
}