function getHorizontalScoreHeight() {
let scrollMeasureElement = document.createElement("div");
scrollMeasureElement.style.width = "100px";
scrollMeasureElement.style.height = "100px";
scrollMeasureElement.style.overflow = "scroll";
scrollMeasureElement.style.position = "absolute";
scrollMeasureElement.style.top = "-99999px";
document.body.appendChild(scrollMeasureElement);
let horizontalScrollbarHeight = scrollMeasureElement.offsetHeight - scrollMeasureElement.clientHeight;
document.body.removeChild(scrollMeasureElement);
return horizontalScrollbarHeight;
}