Hi Khaled,
First, you may try to use the following addon to build a custom layout for the accommodation type page https://wordpress.org/plugins/mphb-styles/
Or you may remove the action
remove_action( 'mphb_render_single_room_type_metas', array( '\MPHB\Views\SingleRoomTypeView','renderCalendar' ), 40 );
and add it with a lower priority value e.g.
add_action( 'mphb_render_single_room_type_metas', array( '\MPHB\Views\SingleRoomTypeView','renderCalendar' ), 20 );
The codes can be added to the functions.php file of the theme or by using the Code Snippets plugin.
Feel free to ask any additional questions.
best regards,
John Davis