Hi Terry
Unfortunately it is not possible to change the order as they are in different containers. One option may be to create an duplicate of your contentbottom module and place it in the sidecol position after your booking module. You can then only display this module on mobile and hide the original using
https://joomla51.com/tutorials/joomla-basics/hide-a-joomla-module-on-mobile-devices
To remove the padding, you can add the following to the
Responsive Custom CSS fields within the
General -> Responsive Options tab of your template settings. For more details on using these fields may I suggest the following article...
https://joomla51.com/tutorials/template-parameters/applying-custom-css-to-a-screensize-device
.sidecol-a .module_surround {
padding-top: 0px !important;
}
Ciaran