.seoc-accordion {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.seoc-accordion > li {
    margin-bottom: 20px;
}
.seoc-accordion-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 16px 25px;
    line-height: 1;
    font-size: 18px !important;
    font-weight: 700 !important;
    background-color: #e9f1d0;
    cursor: pointer;
}
.seoc-accordion-heading::after {
    content: '';
    width: 13px;
    height: 23px;
    background: url(../images/accordion-toggle.svg) no-repeat;
    transition: all 0.3s;
}
.seoc-accordion-heading.active::after {
    transform: rotate(90deg);
}
.seoc-accordion-heading > span {
    width: calc(100% - 30px);
    line-height: 1.3;
}
.seoc-accordion-heading-before {
    color: #97bf0d;
}
.seoc-accordion-heading-after {
    font-weight: 400;
}
.seoc-accordion-heading img {
    margin-left: 10px;
}
.seoc-accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s;
}
.seoc-accordion-opened li:first-child .seoc-accordion-content {
    height: auto;
}
.seoc-accordion-content-closed {
    height: 0 !important;
}
.seoc-accordion-content > div {
    padding: 16px 25px;
}
.seoc-accordion-content strong {
    font-weight: 600;
}
.seoc-accordion-content > div > *:last-child {
    margin-bottom: 0;
}