:root                           /* list of Color Variables */
{      
    --BG: #c45f02;
    --TXT: #ffa704;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: var(--BG);
    color: #444;
    cursor: pointer;
    padding-left: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
  /* 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, .collapsible:hover {
    background-color: var(--BG);
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: var(--BG);
  }

