.btn_change_theme {
    position: fixed;
    right: 40px;
    top: 40px;
}
.switch {
    margin: 0;
    width: 95px;
    height: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.switch p {
    font-size: 11px;
}

.switch input {
    display: none;
}

.switch-handle {
    position: absolute;
    left: 4px;
    transition: 0.4s;
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}
.switch-input:checked~.switch-handle {
    left: 70px !important;
    background-color: #3B424F;
}

#icone_dark,
#icone_light {
    position: absolute;
    z-index: 0;
    cursor: pointer;
    height: 25px;
    padding: 6px;
}
#icone_dark {
    right: 2px;
}
#icone_light {
    left: 2px;
}