.style-switcher {
    position: fixed;
    right: 170px;
    top: 0px;
    padding: 12px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background-color: var(--bg-black-100);
    z-index: 101;
    border-radius: 5px;
    transition: all .5s ease;
    transform: translateY(-100%);
}

.style-switcher.open { 
    transform: translatey(0px);
}

.s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background-color: var(--bg-black-100);
    color: var(--text-black-900);
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 50%;

    right: 100%;
}

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

.style-switcher-toggler {
    top: 100px;
    left: 42px;
}

.day-night {
    top: 100px;
    left: 0;
}

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

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

.colors span {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid black;
}

/*THEMPLATES*/
.color-1 { background-color: #F0C808}
.color-2 { background-color: #DD1C1A}
.color-3 { background-color: #07A0C3}
.color-4 { background-color: #B4DC7F}
.color-5 { background-color: #ff05d9}

@media (max-width: 1000px) {

}

@media (max-width: 501px) {

    .style-switcher {
        left: 100px;
        top: 0px;
        padding: 12px;
    }


}