<script> //ACCORDION var acc = document.getElementsByClassName("accordion"); var i; for (i = 0; i < acc.length; i++) { acc[i].addEventListener("click", function() { this.classList.toggle("active"); var panel = this.nextElementSibling; if (panel.style.maxHeight) { panel.style.maxHeight = null; panel.style.paddingBottom = null; } else { panel.style.maxHeight = panel.scrollHeight + "px"; panel.style.paddingBottom = "2rem"; } }); } </script>