Move Colorbar in Makie a little to the right?

Hi all.
I am doing some figures in InteractiveViz.jl that is based in GLMakie.

I am adding a Colorbar in place (not with the standard f[1,2] of axis) and I need to move it a bit the the right. Any help?

Colorbar(viz.scene; spinewidth= 10, height=20, width=500, vertical=false, label = “Strain Rate”, colormap = cm, colorrange=climit, halign=:left, valign=:bottom)

pass bbox = BBox(left, right, bottom, top) to set the placement rectangle manually

Thanks!