.style-switcher
{
    position: fixed;
    right: 20px;
    top: 60px;
    z-index: 10000;
}
.style-switcher .s-icon
{
    height: 35px;
    width: 35px;
    text-align: center;
    font-size: 16px;
    background: var(--bg-black-100);
    color: var(--skin-color);
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block !important;
}
.style-switcher .s-icon i
{
    line-height: 35px;
}
.style-switcher .s-icon:hover
{
    background: var(--skin-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}