.acf-faq .faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer;
    border: none;
    background: none;
    padding: 15px;
    border: 0px solid !important;
    border-radius: 0px !important;
    background-color: transparent !important;
   
}
.faq-title {
    flex: 1;
    text-align: left;
    min-width: 0;
    white-space: normal;        /* allow wrapping */
    overflow-wrap: anywhere;    /* modern wrapping */
    word-break: break-word;
}
.faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;

}

.faq-item.active .faq-answer {
    padding: 0 15px 15px;
}

.faq-icon-open {
    display: none;
}

.faq-item.active .faq-icon-open {
    display: inline-block;
}

.faq-item.active .faq-icon-closed {
    display: none;
}
span.faq-icon svg {
    font-size: 12px;
    width: 30px;
    height: 30px;
    background-color: #0065BD;
    border-radius: 100%;
    padding: 6px;
}
.faq-icon-closed svg path{
	fill:#fff !important;
}