@import url("style.css");
.style-switcher{
    position: fixed;
    right: 0;
    top: 20px;
    padding: 10px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 150;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}
.open{
    transform: translateX(-10px);
}

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

.style-switcher .s-icon i{
    line-height: 40px;
}
.style-switcher .style-switcher-toggle{
    top: 0;
}
.style-switcher .day-night{
    top: 50px;
}
.style-switcher .audio-set{
    top: 100px;
}

.style-switcher h4{
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.style-switcher .colors span{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    /* border: solid white 2px; */
    cursor: pointer;
}
.style-switcher .colors{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.style-switcher .color-1{
    background: #ec1839;
}
.style-switcher .color-2{
    background: #37b182;
}
.style-switcher .color-3{
    background: #fa5b0f;
}
.style-switcher .color-4{
    background: #1854b4;
}
.style-switcher .color-5 {
    background: linear-gradient(#ff6347, #ffeb3b, #4caf50, #2196f3, #9c27b0);
}

