.accordion-block-container {
  margin: 10px 5px 40px;
}

.single-encyclopedia-container .accordion-block-container {
  max-width: 800px;
  margin: 10px auto 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.accordion-block {
  max-width: 770px;
  margin: auto;
}

.single-encyclopedia .accordion-block {
  max-width: 980px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  font-size: 20px;
  font-family: 'Montserrat-Semibold';
  line-height: 26px;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: left;
  background-color: transparent;
  border-color: #f2f2f2;
  border-width: 0 0 2px 0;
  padding: 20px 30px 20px 0;
  color: #444;
  text-decoration: none;
}

/* 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,
button:focus {
  /* background-color: #ccc;
  background: #ccc; */
  /* border: none; */
  cursor: pointer;
  background-color: #fff;
  color: #000;
}

.accordion:hover:active {
    border-color: #f2f2f2;
}

/* Style the accordion panel. Note: hidden by default */
.accordion-block .panel {
  color: #444;
  padding: 0;
  background-color: white;
  display: none;
  overflow: hidden;
  max-width: 90%;
  font-size: 22px;
  font-family: 'Cambria Regular';
  line-height: 32px;
}

.accordion-block .panel a {
  text-decoration: none;
  color: #0d7093;
  font-weight: bold;
}

.accordion-block .panel a:hover {
  text-decoration: underline;
}

.accordion:after {
  content: '\ff0b';
  font-size: 25px;
  color: #0D7093;
  float: right;
  margin-left: 5px;
  margin-right: -25px;
}

.active:after {
  content: "\ff0d"; /* Unicode character for "minus" sign (-) */
}


@media only screen and (max-width: 767px) {
  .accordion-block .panel {
    font-size: 16px;
    line-height: 24px;
  }

  .accordion {
    font-size: 18px;
    line-height: 24px;
  }
}
