.accordionjs {
  position: relative;
  
  padding: 0;
  list-style: none;
  border-radius: 0px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {

  position: relative;
  z-index: 10;
 
  overflow: hidden;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #eef6ff;
  padding: 10px;
  margin: 10px 0px;
  display: block;
  cursor: pointer;
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 15px;
  color:#4B4A4B ;
  font-size: 20px;
}
.accordionjs .acc_section .acc_content {
  padding: 10px 30px;
}
.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 {
  background: #f9ddd7;
  border-bottom: none;
  border-radius: 0px;
}


.acc_section.acc_active h3::after {
    content: '\002D';
   
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 30px;
    margin: 0 auto;
    width: 30px;
    color: #4B4A4B;
    height: 30px;
    padding: 3px 10px;
    border-radius: 50%;
    border: 2px solid #4B4A4B;

  }

  .acc_section h3::after {
    content: '\002B';

    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 30px;
    margin: 0 auto;
    width: 30px;
    color: #4B4A4B;
    height: 30px;
    padding: 3px 8px;
    border-radius: 50%;
    border: 2px solid #4B4A4B;}