.dbp_accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    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, .dbp_accordion:hover {
    background-color: #fff;
  }

  .dbp_accordion:after {
    width: 30px;
    height: 30px;
    content: " ";
    background: url('/wp-content/plugins/questions_accordions/down.png');
    display: inline-block;
    background-size: contain;
    margin-bottom: -8px;
    margin-left: 15px;
    transition: width .25s, height .25s, transform .25s;
}  .dbp_accordion.active:after {
    transform:rotate(180deg)
}
body button.dbp_accordion {
  font-size: 1em;
  font-weight: 600;
  border-top: 3px solid #000;
  border-radius: 0!important;
  -webkit-border-radius: 0!important;
}

body[data-button-style*="slightly_rounded"] button.dbp_accordion {
  border-radius: 0!important;
  -webkit-border-radius: 0!important;
  
}
  /* Style the accordion panel. Note: hidden by default */
  .dbp_panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .dbp_panel {
    font-weight: 400;
}
.dbp_content {
  padding: 1em 0;
}
a.topic_link {
  font-family: Libre Baskerville;
  color: #377845;
  background: #d5d5d5;
  font-style: italic;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom:10px;
  font-weight: 600;
}


a.c2a {
    padding: 1em;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    background-position: center center;
    background-size: cover!important;
	margin-bottom:1em;
}

.c2a span {
    font-size: 2em;
    font-weight: 900;
    color: #000;
}