/* Style the button that is used to open and close the collapsible content */
.collapsible h1:after {
    /* background-color: #eee; */
    /* color: #444; */
    /* cursor: pointer; */
    /* padding: 18px; */
    /* width: 100%; */
    /* border: none; */
    /* text-align: left; */
    /* outline: none; */
    /* font-size: 15px; */
    /* content: " ^"; */
}
  
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsible:hover {
    color: #0026ff;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible-content {
    /* padding: 0 18px; */
    /* display: none; */
    /* overflow: hidden; */
    /* background-color: #f1f1f1; */
    max-height: 0;
    overflow: hidden;  
    transition: max-height 0.75s ease-out;
}