console.log(123);
const $showSettings = document.querySelector('.cc-show-settings');
console.log($showSettings);
console.log(456);
if ( $showSettings ) {
$showSettings.addEventListener('click', () => {
document.querySelectorAll('.cc-accept-all').forEach( $acceptAllEl => {
$acceptAllEl.style.display = 'none';
} );
} );
}
console.log($showSettings);
console.log(789);
let test = document.querySelector("#cc-window > div.cc-compliance.cc-highlight > a.cc-btn.cc-accept-all.cc-btn-no-href");
console.log(test);
console.log(000);