.style-switcher{
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    margin: 8px;
    width: 70px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 30px;
    transition: all 0.3s ease;
    transform: translateX(110%);
    text-align: center;
    font-family: 'Josefin Sans';
    
}
.style-switcher.open{
    transform: translateX(-25px);
}
.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: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    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;
    text-transform: capitalize;
}
.style-switcher .colors{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.style-switcher .colors span{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin: 2px;
    padding: 1px;
    color: var(--text-black-900);
    cursor: pointer;
    display: flex;
	flex-direction: column;
	justify-content: center;
}
.style-switcher .skin-cores1{
    background: #ec1839;
}
.style-switcher .skin-cores2{
    background: #fa5b0f;;
}
.style-switcher .skin-cores3{
    background: #37b182;
}
.style-switcher .skin-cores4{
    background: #1854b4;
}
.style-switcher .skin-cores5{
    background: #B64926;
}