.accordionjs {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.accordionjs .acc_section {
    position: relative;
    z-index: 10;
    margin-top: -1px;
    overflow: hidden;
}

.accordionjs .acc_section .acc_head {
    position: relative;
    padding: 14px 0;
    display: block;
    cursor: pointer;
    border-bottom: 1px solid #ffffff;
    font-style: italic;
    position: relative;

}

.accordionjs .acc_section .acc_head::after {
    content: "";
    background: url("../images/arrow@2x.png");
    width: 21px;
    height: 15px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-size: cover;
}

.accordionjs .acc_section .acc_head h3 {
    line-height: 1;
    margin: 5px 0;
}

.accordionjs .acc_section .acc_content {
    padding: 10px;
}

.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: transparent;
}


.accordionjs .acc_section.acc_active .acc_head::after{
    transform: rotate(180deg)
}
