/* Removes the summary drop down arrow */
summary.burger-summary {
	display: block;
}

/* Removes the summary drop down arrow for safari */
summary.burger-summary::-webkit-details-marker {
	display:none;
}

/* There's a Boostrap CSS bug with d-none d-sm-block to hide on xs. Made one myself */
/* 576px is the xs breakpoint. */
/* Have to use id selector, as the class one isn't strong enough */
@media screen and (max-width: 576px) {
	div#hide-on-xs-fix {
		display: none;
	}
}
