/*# accordions */
.accordion-section .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.accordion-section .active, .accordion:hover {
  background-color: #ccc;
}

.accordion-section .active {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.accordion-section .accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion-section .active:after {
  content: "\2212";
}

.accordion-section .accordion-panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
}
.accordion-section .accordion-content, .accordion-section .accordion-list {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-radius: 0.5rem;
}

.accordion-section .accordion-content p {
  margin-left: 2rem;
  margin-bottom: 0;
  padding-top: 2rem;
}

.accordion-section .accordion-content p+p {
  margin-bottom: 0;
  padding-top: 1rem;
}

.accordion-section .accordion-content p:last-of-type {
  margin-bottom: 2rem;
  padding-top: 1rem;
}


.accordion-section .accordion-list ul > li > p {
  line-height: 30px;
  padding: 0 15px 0 0;
  font-size: 16px;
  font-weight: 400;
}

.accordion-section .accordion-list .list-bullet-accordion {
  list-style-type: disc;
  margin: 0 15px 15px 0;
  padding-left: 30px;
  overflow: hidden;
  padding-top: 2rem;
}