/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 0.8rem;
    margin-bottom: 10px;
    padding: 5px 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  /* 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) */
  /* .active, .accordion:hover {
    background-color: #ccc;
  } */
  
  /* Style the accordion panel. Note: hidden by default */
  .accordion-panel {
      border-bottom: 1px solid #ecedee;
    padding: 0 18px;
    margin-bottom: 20px;
    margin-left: 27px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .accordion:after {
    content: '+'; /* Unicode character for "plus" sign (+) */
    color: #943E14;
    font-size: 24px;
    font-weight: 100;
    float: left;
    margin-top: -7px;
    margin-left: 5px;
    margin-right: 15px;
  }
  
  .active:after {
    content: "−"; /* Unicode character for "minus" sign (-) */
  }