/**
 * THIS FILE WAS GENERATED BY compile.py AND SHOULD NOT BE MANUALLY EDITED
 **/

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: white;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 0;
    outline: none;
    transition: 0.4s;
    border-bottom: 1px solid silver;
  }
  
  /* 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: white;
  }

  /* Remove black outline on focus (hover or click) */
  :focus {outline:0 !important;}

  /* Style the closed accordion panel */
  .panel-closed {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
  }

  /* Style the open accordion panel */
  .panel-open {
    padding: 0 18px;
    background-color: white;
    display: block;
    overflow: hidden;
  }
