window.addEventListener('DOMContentLoaded', function(){
document.querySelectorAll('.section__editions-checkbox').forEach(function(arr1){
arr1.addEventListener('focus', function(event){
document.querySelectorAll('.label-checkbox-editions').forEach(function(arr2){
arr2.classList.remove('focus-label')
})
document.querySelector(`[for="${event.target.id}"]`).classList.add('focus-label')
})
})
})