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

.accordionjs .acc_section {
    position: relative;
    z-index: 10;
    overflow: hidden;
    background-color: #F0F0F0;
    box-shadow: 15px 15px 30px 0 rgb(0 0 0 / 7%), -10px -10px 15px 0 rgb(255 255 255 / 80%);
    border-radius: 8px;
}

.acc_section+.acc_section {
    margin-top: 20px;
}

.accordionjs .acc_section:hover .acc_head {
    color: #007AFF;
}

.accordionjs .acc_section .acc_head {
    position: relative;
    padding: 15px;
    display: block;
    cursor: pointer;
    font-weight: 600;
    transition: color .3s ease-in-out;
}

.accordionjs .acc_section .acc_head:after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position-y: 4px;
    transition: all .3s ease-in-out;
    display: inline-block;
    right: 15px;
    position: absolute;
}

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

.accordionjs .acc_section .acc_content {
    padding: 15px;
    padding-top: 0;
}

.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

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

.accordionjs .acc_section.acc_active>.acc_head {
    /*background: #F9F9F9;
    border-bottom: 1px solid #ccc;*/
    color: #007AFF;
}

.accordionjs .acc_section.acc_active>.acc_head:after {
    transform: rotate(180deg);
    background-position-y: -2px;
}