.style_switcher{
    position: fixed;
    right: 0;
    top: 18px;
    padding: 6px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}
.style_switcher.open{
    transform: translateX(-25px);
}
.style_switcher .s_icon{
    position: absolute;
    height: 35px;
    width: 35px;
    text-align: center;
    font-size: 20px; 
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.style_switcher .s_icon i{
    line-height: 40px;
}
.style_switcher .style_switcher_toggler{
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.style_switcher .day_night{
    top: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.style_switcher h4{
    margin: 0 0 10px;
    color: var(--text-black-700);
    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;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    
}


.style_switcher .color-1{
    
    background: #1D9BF0;
}

.style_switcher .color-2{
    background: #EA4335;
    
}

.style_switcher .color-3{
    background: #37b182;
}

.style_switcher .color-4{
    background: #281883;
}
.style_switcher .color-5{
    background:  brown;
}



