/** ********************************************** **
	Your Custom color css File
	Put here all your custom functions
*************************************************** **/

/* Smooth sidenav collapse using CSS grid instead of Bootstrap's height transition.
   grid-template-rows: 0fr → 1fr animates smoothly in all modern browsers
   without the reflow delay that Bootstrap's height transition causes in Firefox. */
#sideNav .collapse {
	display: grid !important;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.25s ease-out;
	overflow: hidden;
}

#sideNav .collapse.show {
	grid-template-rows: 1fr;
}

#sideNav .collapse > * {
	overflow: hidden;
	flex-wrap: nowrap;
}
