public void _FilterSearchList()
    {
        //Would make sense to combine both but not sure why p_list has to be kept under CanvasGroup.
        ApartmentManager.instance.FilterApartments();
        p_List.DoToggleCancasGroup(true);
        Debug.Log("Generating List");
        p_ListContent._GenerateListOnClick(true);
        Debug.Log("Generating List - complete");

        _FilterSearch3D();
    }
 // Actions when leaving the List Panel
 public void _Back()
 {
     listPanel.DoToggleCancasGroup(false);
     content._CleanListView();
 }