var disp=[0,0]; // смещение
var listener = function (e) {
full_info_div.style.left = (disp[0]+e.clientX) + "px";
full_info_div.style.top = (disp[1]+e.clientY) + "px";
};
full_info_div.addEventListener('mousedown', e => {
let b = full_info_div.getBoundingClientRect();
disp= [b.left-e.clientX,b.top-e.clientY];
document.addEventListener('mousemove', listener);
document.querySelector("html").setAttribute("style", "user-select: none");
});
...
m0 7q6 6 13 6 6 0 13-6 6-6 13-6 6 0 13 6V0H0V7z
и глаже и компактнее...