@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import './skins/color-1.css';
@import './style.css';

.style-switcher {
    position: fixed; right: 0; top: 60px; padding: 15px; width: 200px;
    border: 1xp solid var(--bg-black-50); background: var(--bg-black-100);
    z-index: 101; border-radius: 5px; transition: all 0.3s ease; transform: translate(100%);
}
.style-switcher.open {
    transform: translate(-25px);
}

.style-switcher .s-icon {
    position: absolute; height: 40px; width: 40px; text-align: center; right: 100%;
    font-size: 20px; background: var(--bg-black-100); color: var(--text-black-900);
    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 .day-night {
    top: 55px;
}
.style-switcher .style-switcher-toggler {
    top: 0;
}
.style-switcher h4 {
    margin: 0 0 10px;
    color: var(--bg-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.style-switcher .colors span {
    display: inline; height: 30px; width: 30px; border-radius: 50%;
    border: 1px solid red;
}
.style-switcher .color-1 { background: #ec1839; } .style-switcher .color-2 { background: #fa5b0f; } .style-switcher .color-3 { background: #37b182; }
.style-switcher .color-4 { background: #1854b4; } .style-switcher .color-5 { background: #f021b2; }