.style-switcher{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    width: 280px;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.3s ease;
}
.style-switcher.open{
    transform: translateX(0);
    box-shadow: var(--shadow);
}
.style-switcher-main{
    height: 100%;
    background-color: var(--bg-color);
    padding: 30px;
    overflow-y: auto;
}
.style-switcher-toggler{
    height: 40px;
    width: 40px;
    background-color: var(--main-color);
    color: var(--text-white);
    font-size: var(--fs-md);
    position: absolute;
    left: -40px;
    top: 28%;
    border-radius: 8px 0 0 8px;
    border: none;
}
.style-switcher h2{
    text-transform: capitalize;
    font-size: var(--fs-xl);
    font-weight: 500;
    padding: 0 0 10px;
}
.style-switcher-item{
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}
.style-switcher-item p{
    margin-bottom: 10px;
}
.hue-slider{
    -webkit-appearance: none;
    width: 100%;
    outline: none;
    height: 12px;
    border-radius: 6px;
    margin-bottom: 5px;
    cursor: pointer;
    background: linear-gradient(to right,
        hsl(0, var(--saturation), var(--lightness)),
        hsl(30, var(--saturation), var(--lightness)),
        hsl(60, var(--saturation), var(--lightness)),
        hsl(90, var(--saturation), var(--lightness)),
        hsl(120, var(--saturation), var(--lightness)),
        hsl(150, var(--saturation), var(--lightness)),
        hsl(180, var(--saturation), var(--lightness)),
        hsl(210, var(--saturation), var(--lightness)),
        hsl(240, var(--saturation), var(--lightness)),
        hsl(270, var(--saturation), var(--lightness)),
        hsl(300, var(--saturation), var(--lightness)),
        hsl(330, var(--saturation), var(--lightness)),
        hsl(360, var(--saturation), var(--lightness))
    );
}
.hue-slider:focus{
    box-shadow: var(--focus-shadow);
}
.hue-slider::-webkit-slider-thumb{
    -webkit-appearance:none;
    width: 20px;
    height: 20px;
    background-color: var(--bg-white);
    cursor: pointer;
    border-radius: 50%;
}
.hue-slider::-moz-range-thumb{
    width: 20px;
    height: 20px;
    background-color: var(--bg-white);
    cursor: pointer;
    border-radius: 50%;
}
.hue-slider::-webkit-slider-thumb:hover{
    opacity: 0.8;
}
.hue-slider::-moz-range-thumb:hover{
    opacity: 0.8;
}
.form-switch{
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.form-switch span{
    padding-right: 15px;
}
.form-switch input{
    position: absolute;
    pointer-events: none;
    opacity: 0;
}
.form-switch .box{
height: 24px;
width: 44px;
border-radius: 12px;
border: 1px solid var(--border-color);
position: relative;
transition: all 0.5s ease;
}
.form-switch .box::before{
    content: '';
    height: 14px;
    width: 14px;
    border: 1px solid var(--border-color);
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.form-switch input:checked + .box{
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.form-switch input:focus + .box{
    box-shadow: var(--focus-shadow);
}
.form-switch input:checked + .box::before{
    transform: translateX(calc(100% + 6px));
    background-color: var(--bg-white);
    border-color: transparent;
}