@charset "utf-8";
/* CSS Document */

.accordion {
  background-color: #363333; /* Dark Grey */
  color: #F6E9E9; /* Light Peach */
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid #F6E9E9; /* Light Peach */
  text-align: left;
  font-size: 1.25em;
  font-family: "Strawford", sans-serif;
  outline: none;
  transition: 0.4s;
}

.accordion-dark {
  background-color: #F6E9E9; /* Light Peach */
  color: #363333; /* Dark Grey */
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 1.25em;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #E16428; /* Orange */
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #FBFEF9; /* Baby Powder */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel-dark {
    color: #272121;
}