To make the toggle box "Collapsible" closed by default:
Open your formaloo and click on "Edit base"
From the settings, scroll down to see the "Custom JS" box.
Copy the following code and paste it in the custom JS box.
<script defer> window.addEventListener('load', function() { var detailsElements = document.querySelectorAll('details'); detailsElements.forEach(function(d) { d.removeAttribute('open') }); }); </script>