/* Style the buttons that are used to open and close the accordion panel */

.ma-accordion-wrapper {
    width: 70%;
    border: 1px solid  #ca9d00;
    padding: 15px;
}
.ma-accordion-wrapper  .ma-accordion {
    color: #ca9d00;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
margin: 0;
padding: 0;
    position: relative;
}
.ma-accordion-wrapper  .ma-accordion.active:after {
    content: "\f056";
}

.ma-accordion-wrapper  .ma-accordion:after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -0.5em;
    color: #ca9d00;
    font-size: 16px;
    font-family: "FontAwesome";
    content: "\f055";
    font-style: normal;
}
  
 
  /* Style the accordion panel. Note: hidden by default */
  .ma-accordion-wrapper .ma-panel {
    background-color: white;
    display: none;
    overflow: hidden;
    padding-top: 20px;
  }