var screenwidth = screen.width;
var documentscreenwidth = document.body.clientWidth;
var varzoom = documentscreenwidth / screenwidth
$(window).on("load resize", function () {
$(".bottom-panel").css("width", screenwidth + "px");
$(".bottom-panel").css("transform", "scale(" + varzoom + ")");
});