});
window.REBELMOUSE_ACTIVE_TASKS_QUEUE.push(function(){
setTimeout(function(){
const images = document.querySelectorAll('.rebellt-item.col1 img[src*="width=300&quality=90"]');
/*document.querySelectorAll('.rebellt-item.col1 img')*/
images.forEach(img => {
const oldSrc = img.src;
const newSrc = oldSrc.replace('&width=300&quality=90', '&width=900&quality=90');
if (oldSrc !== newSrc) {
img.src = newSrc;
}
});
},2000);
});
window.REBELMOUSE_ACTIVE_TASKS_QUEUE.push(function(){
IcreateElementChangeListener('.fc-ccpa-root', (el)=>{
el.style.cssText = "position: fixed !important;bottom: 0 !important;z-index: 2147483647 !important;width:100% !important;text-align:center;";
});
});
window.REBELMOUSE_ACTIVE_TASKS_QUEUE.push(function(){
window.REBELMOUSE_STDLIB.loadExternalScript("https://snippet.affilimatejs.com", function() {
});
});
window.REBELMOUSE_ACTIVE_TASKS_QUEUE.push(function(){
const body=document.querySelector('body');
document.querySelector('.search-toggle').addEventListener('click',function(e){
body.classList.remove('menu-open');body.classList.toggle('search-opened');
});
// document.querySelector('.menu-toggle').addEventListener('click',function(e){
// body.classList.remove('search-opened');body.classList.toggle('menu-open');
// });
});
window.REBELMOUSE_ACTIVE_TASKS_QUEUE.push(function(){
var serch_input=document.querySelector(".search-widget input");
var serch_submit=document.querySelector(".search-widget button")
document.querySelector(".search-widget input").onkeyup= function(event){
if(event.target.value){
serch_submit.classList.add('enabled')
}
else {
serch_submit.classList.remove('enabled')
}
}
});