You can't change DOM order with css. You could however apply a position: absolute;
css style and position the element by setting top, bottom, left, right styles as needed.
Perhaps better in your case would be position: fixed; bottom: 0;
to position your toolbar at the bottom of the browser window.