.accordionContainer,
#openCloseAll {
  max-width: 80%;
  margin: 0 auto 5px;
}

.accordionButton,
.btn {
  background-color: #edede9;
}

.accordionButton {
  color: #5c5d5f;
  cursor: pointer;
  padding: 18px;
  border-style: solid;
  border-color: #EDEDE9;
  width: 100%;
  text-align: center;
  font-weight: bold;
  outline: none;
  transition: 0.4s;
}

.accordionButton:hover,
.btn:hover {
  background-color: #babab6;
}

.accordionContent {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordionContent p:first-of-type {
  padding-top: 10px;
}

.accordionContent p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 10px;
}

.accordionContent a:hover {
  cursor: pointer;
}

#accordionHolder {
  margin-bottom: 20px;
}

.accordionBuffer {
  margin-top: 20px;
}

#openCloseAll {
  text-align: right;
}

#closeAll {
  margin-left: 10px;
}

.btn {
  border: none;
  border-radius: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

.accordionContent {
  border-style: none solid none solid;
  border-width: 3px;
}

.active.accordionContent {
  border-style: none solid solid solid;
}

/* Used if only using borders on mobile */
/* Remove all if using borders on all screen sizes */
@media screen and (width > 770px) {

  .accordionButton,
  .accordionContent {
    border-color: #EDEDE9 !important;
  }

}

.openCloseAll {
  text-align: right;
}

.accordionContainer,
.openCloseAll {
  max-width: 80%;
  margin: 0 auto 5px;
}

.closeAll {
  margin-left: 10px;
}

