.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: var(--transition);
    transform:translateX(100%);
}
.style-switcher.open {
transform:translateX(0%);
}

.style-switcher .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-radius: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
}

.style-switcher .s-icon i {
    line-height: 40px;
}

.style-switcher .style-switcher-toggler {
    top: 0;
}

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

.style-switcher h4 {
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
}

.style-switcher .colors {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.style-switcher .colors span {
    display: inline-block;
    height: 29px;
    width: 29px;
    border-radius: 50%;
        cursor: pointer;
}

.style-switcher .color-1 {
    background: #fb5200;
}

.style-switcher .color-2 {
    background: #c80213;
}

.style-switcher .color-3 {
    background: #37b182;
}

.style-switcher .color-4 {
    background: #36B4CE;
}

.style-switcher .color-5 {
    background: #9F7AEA;
}