/* Style pour les CheckBox */

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

/* Fond du toggle */
.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:rgb(162, 162, 162);
    transition: 0.4s;
    border-radius: 34px;
}

/* Bouton circulaire */
.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* Quand coché */
input:checked + .slider {
    background-color: #065A82;
}

input:checked + .slider:before {
    transform: translateX(26px);
}