.style-switcher{
    position: fixed;
    right: 0px;
    top:15%;
    padding: 5px;
    width:50px;
    z-index:101;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
    cursor: pointer;
}

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

.style-switcher .s-icon{
    position: absolute;
    height: 40px;
    text-align: center;
    font-size: 20px;
}

.style-switcher .style-switcher-toggler{
    right: 100%;
    margin-right: 15px;
    top:0;
}

.style-switcher .colors{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--white-alpha-25);
    border:2px solid var(--white-alpha-40);
    border-radius: 10px;
    flex-direction: column;

}

.style-switcher .colors span{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin: 2px;
    opacity: 0.8;
    border: 1px solid var(--white-alpha-40);
}

.style-switcher .color-1{
      background-color: #6A1B4c;
}
.style-switcher .color-2{
    background-color: #03755b;
}
.style-switcher .color-3{
    background-color: #383CC1;
}
.style-switcher .color-4{
    background-color: #D82E2F;
}
.style-switcher .color-5{
    background-color: #242B2E;
}

.style-switcher .color-6{
    background-color: #E83A59;
}