xAxis = g => g
.attr("transform", `translate(0,${params.svg.height - params.margin.bottom})`)
.call(g => g.append("g").call(d3.axisBottom(xM).ticks(params.svg.width / 80, "s")))
.call(g => g.append("g").call(d3.axisBottom(xF).ticks(params.svg.width / 80, "s")))
.call(g => g.selectAll(".tick:first-of-type").remove())
.call(g => g.selectAll(".tick line").attr("stroke", "#767676"))
.call(g => g.selectAll(".domain").attr("stroke", "#767676"))
.call(g => g.selectAll(".tick text").attr("fill", "#767676").style("font-size", "clamp(.7rem, 2.2vw, 1.0rem)").attr("font-family", "'Source Sans Pro', sans-serif"))