#dark-mode-switch-wrapper {
    display: flex;
    align-items: center;
    position: fixed;
    right:0;
    bottom:470px;
    z-index: 9998;
}

#dark-mode-switch {
    display: inline-block;
    height: 40px;
    position: relative;
    width: 40px;
}

#dark-mode-switch input {
    display: none;
}

.slider {
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:after {
    font-family: "Font Awesome 5 Free";
    content: "\f186";
    vertical-align: middle;
    position: absolute;
    font-size: 20px;
    line-height: 40px;
    width: 100%;
    text-align: center;
}

.slider:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

input:checked + .slider:after {
    content: "\f185";
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.dark-mode, .dark-mode #site-navigation {
    background: #243447;
}

.dark-mode #page, .dark-mode #lyrics, .dark-mode #lyrics-summary-container {
    background: #141d26 !important;
    color: #798693;
}

.dark-mode #lyrics-summary-container a {
    color: #798693;
}

.dark-mode #site-navigation .inside-navigation {
    background: #fff;
}

.dark-mode #page a:hover {
    color: #c9d2dc;
}

@media (max-width: 600px) {
    /* sur VM les strophes en/fr s'alternent, bg sur fr pour distinguer */
    .dark-mode #lyrics .wp-block-columns > .wp-block-column:nth-child(2n) {
        color: #b0b9c2;
    }
}