.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #fff;
  padding: 25px 10px;
  display: block;
  cursor: pointer;
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 0;
  font-size: 24px;
  font-family: 'Playfair Display';
  position: relative;
  padding-right: 50px;
  line-height: normal;
  color: #0D0B0C;
}


.accordionjs .acc_section .acc_head h3:before{ content: ""; position: absolute; right: 0; top: 0; background: url("../images/sprite.png"); width: 25px; height: 25px; background-position: -131px -344px}

.accordionjs .acc_section.acc_active .acc_head h3:before{ content: ""; position: absolute; right: 0; top: 0; background: url("../images/sprite.png"); width: 25px; height: 25px; background-position: -161px -344px}

.accordionjs .acc_section .acc_content {
  padding: 10px;
}
.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {

}
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {

}
.accordionjs .acc_section.acc_active > .acc_content {
  display: block;
}
.accordionjs .acc_section.acc_active > .acc_head {
 
}


@media (max-width: 767px) { .accordionjs .acc_section .acc_head h3{ line-height: 28px; font-size: 18px;}}
