.style-switcher {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    width: 200px;
    border: 1px solid  var(--bg-noir-50);
    background: var(--bg-noir-100);
    z-index: 101;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}
.style-switcher.open {
    transform: translateX(-25px);
}
.style-switcher .style-switcher-toggler {
    top:0;
}
.style-switcher .s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-noir-100);
    color: var(--text-noir-900);
    right: 100%;
    border: 1px solid  var(--bg-noir-50);
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.style-switcher .s-icon i {
    line-height: 40px;
}
.style-switcher .day-night {
    top: 60px;
}
.style-switcher .fa-palette {
    margin: 20px 0 10px;
    color: var(--text-noir-700);
}
.style-switcher .color {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.style-switcher .color span {
    display: inline-block;
    margin-top: 10px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid var(--bg-noir-50);
}
.style-switcher .color-1 {
    background-color: #0251C5;
}
.style-switcher .color-2 {
    background-color: #B80202;
}
.style-switcher .color-3 {
    background-color: #6FD382;
}