Anyone know how to get CX3A to completely hide when not in use? Example:

The blank space is a CX3A instance that the earliest event is 47 days away as of writing - I have calendar set to only get 30 days ahead.
relevant code:
module: "calendar", // Built in
// position: "top_left", // Curr7ently hidden
config: {
animationSpeed: 0,
broadcastEvents: true,
broadcastPastEvents: true,
fetchInterval: 60000, // minimum 1 minute.
maximumNumberOfDays: 30,
maximumEntries: 999999,
calendars: [
(insert calendar list here)
{
module: "MMM-CalendarExt3Agenda", // https://github.com/MMRIZE/MMM-CalendarExt3Agenda
position: "bottom_left",
config: {
showMiniMonthCalendar: false,
calendarSet: ["Kraken"],
instanceId: "2",
refreshInterval: 3600000, // Should be one hour
waitFetch: 1,
firstDayOfWeek: 0,
startDayIndex: 1,
endDayIndex: 30,
animationSpeed: 0,
useSymbol: true,
useWeather: false,
onlyEventDays: 1,
},
},
:root {
--color-text: #999;
--color-text-dimmed: #666;
--color-text-bright: #fff;
--color-background: #000;
--font-primary: "Roboto Condensed";
--font-secondary: "Roboto";
--font-size: 24px;
--font-size-xsmall: .75rem;
--font-size-small: 1rem;
--font-size-medium: 1rem;
--font-size-large: 1rem;
--font-size-xlarge: 1rem;
--gap-body-top: 60px;
--gap-body-right: 60px;
--gap-body-bottom: 60px;
--gap-body-left: 60px;
--gap-modules: 30px;
}
.region .container {
display: block;
}
/* adjust modules to display side by side */
.MMM-CalendarExt3Agenda {
display: inline-flex;
margin-right: 5px;
margin-left: 5px;
}
(plus font-size adjustments to use the variables, and elimination of the description field, not shown)