.style-switcher
{
    position: fixed;
    right: 0;
    top: 40px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--box-color);
    background: var(--body-color);
    z-index: var(--z-modal);
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}

.style-switcher.open{
    transform: translateX(-25px);
}

.style-switcher .s-icon{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--skin-color);
    color: var(--title-color);
    right: 100%;
    border: 1px solid var(--box-color);
    margin-right: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

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

.style-switcher .s-icon::after {
    border-radius: 50%;
}

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

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

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

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

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

.style-switcher .color-1
{
    background: hsl(342, 92%, 46%);
}

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

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

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

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

@media screen and (max-width: 968px) {
    .style-switcher {
        top: auto;
        bottom: 70px;   
    }
    .style-switcher .s-icon{
        margin-right: 15px;
    }
}