(function(){
let elem = document.querySelector('#remote-info-20');
const desktop = `
UWAGA
Najlepsze oferty Last minute na Lato 2025 >>
SPRAWDŹ
`;
const mobile = `
Najlepsze oferty Last minute na Lato 2025 >>
`;
var spwidth = screen.width || window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
if(spwidth<750) {
elem.innerHTML = mobile;
}else{
elem.innerHTML = desktop;
}
elem.style.minHeight = "auto";
elem.style.marginBottom = "auto";
elem.style.display = "block";
})();