.style-switcher {
    position: fixed;
    right: 0;
    top: 50px;
    padding: 10px;
    width: 200px;
    border: none;
    background-color: var(--bg-black-100);
    z-index: 101;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}

.style-switcher.open {
    transform: translateX(0%);
}

.style-switcher .s-icon {
    position: absolute;
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 16px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: none;
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin-top: -10px;
}

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

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

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

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

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

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

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

.style-switcher .color-3 {
    background: #28b67f;
}

.style-switcher .color-4 {
    background: #7672ad;
}

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

/* Theme colors */
.fa-moon {
    color: #de9534;
}

.fa-sun {
    color: #7672ad;
}