/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #f3f3f3;
  color: #151515;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  font-size: 1rem;
  text-align: left;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px #151515 solid;
  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) */
  .dropped, .accordion:hover {
    background-color: #ccc;
  }

  .panel {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0;
  }

  .panel > p{
    padding: 20px;
  }