Unfortunately, we are unable to accept any bookings at the moment. Please email us at raia.exoticadubai@tajhotels.com
// make it so that the continue button is floating at the bottom
document.addEventListener("DOMContentLoaded", function() {
// fix the bottom button position when scrolling
var containers = document.querySelectorAll('.button-container');
function applyStyles(container) {
if (container.querySelector('button')) {
container.style.position = 'fixed';
container.style.bottom = '0';
container.style.left = '0';
container.style.width = '100%';
container.style.zIndex = '1000';
container.style.boxShadow = '0 -2px 5px rgba(0,0,0,0.2)';
}
}
Array.prototype.forEach.call(containers, function(container) {
applyStyles(container);
});
});