/* 20220113-eh Additional CSS for agenda filter open/close */
.filter-opened {
	max-height: 600px;
	transition: max-height 250ms ease-in;
}
.filter-closed {
	max-height: 0px;
	overflow: hidden;
}
.filter-open::after {
	content: " \25BC";
	position: relative;
	top: -1px;
}
.filter-close::after {
	content: " \25B2";
}