/* START of no JS burger menu*/
/* 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;
}

/* On close, hide options */
details.navbar-toggle-details + div {
	display: none;
}

/* On open, show options */
details.navbar-toggle-details[open] + div {
	display: block;
}
/* END of no JS burger menu using checkbox*/
