.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {
  /*border: 1px solid #ccc;*/
  position: relative;
  z-index: 10;
  margin-top: 0px;
  overflow: hidden;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #fff;
  padding: 2rem 2rem 1rem 2rem;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size:1.2em;
  color:#151515;
  font-weight: bold;
}


.accordionjs .acc_section .acc_head:after {
  content: '\002B';
  color: #54B948;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}


.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 0;
}
.accordionjs .acc_section .acc_content {
  padding: 2rem 2rem 1rem 2rem;
}

.accordionjs .acc_section .acc_content p {
  margin-bottom:1em;
}


.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.accordionjs .acc_section.acc_active > .acc_content {
  display: block;
}
.accordionjs .acc_section.acc_active > .acc_head {
  background: #F9F9F9;
  border-bottom: 1px solid #ccc;
}


.accordionjs .acc_section.acc_active .acc_head:after {
  content: '\2212';
}


@media only screen and (max-width: 600px) {
  .accordionjs .acc_section .acc_head {
    font-size: 1em;
  }
}

@media only screen and (max-width: 320px) {
  .accordionjs .acc_section .acc_head {
    font-size: 0.8em;
  }
}
