.style-swicther{
    position: fixed;
    right: -15px;
    top: 5px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--bg-black-100);
    background: var(--bg-black-100);
    z-index: 101px;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}
.style-swicther.open{
    transform: translateX(-25px);
}
.style-swicther .s-icon{
    position: absolute;
    height: 40px;
    width: 40px;
    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;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.style-swicther .s-icon i{
    line-height: 40px;
}
.style-swicther .style-swicther-toggler{
    top: 0;
}
.style-swicther .day-night{
    top: 55px;
}
.style-swicther h4{
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.style-swicther .color{
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}
.style-swicther .color span{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
   
}
.style-swicther .color-1{
    background: #f021b2;
}
.style-swicther .color-2{
  background: #1854b4;
}
.style-swicther .color-3{
  background: #37b182;
}
.style-swicther .color-4{
    background: #ec1839;
}