function highlightbar() {
return x => htl.html`<div style="
background: ${x === 'female' ? 'red' : x === 'male' ? 'yellow' : 'white'};
width: 100%;
padding-right: 3px;
box-sizing: border-box;
display: flex;
justify-content: flex-end;">${x.toLocaleString("en")}`
}