/* REMOVE BOOTSTRAP DEFAULTS */
.custom-faq .accordion-item {
    border: 1px solid #ddd;
    /* margin-bottom: 18px; */
}

.custom-faq .accordion-button {
    background: #fff !important;
    box-shadow: none !important;
    font-weight: 600;
    font-size: 16px;
    padding: 35px 24px;
    color: #000;
}

/* REMOVE BLUE ON CLICK */
.custom-faq .accordion-button:focus {
    box-shadow: none;
    border-color: #ddd;
}

/* REMOVE DEFAULT ICON */
.custom-faq .accordion-button::after {
    display: none;
}

/* CUSTOM ICON */
.custom-faq .accordion-button .icon {
    margin-left: auto;
    font-size: 22px;
    font-weight: 400;
    color: #000;
    position: relative;
}

/* ARROW (DEFAULT) */
.custom-faq .accordion-button.collapsed .icon::before {
    content: "▾";
}

/* MINUS WHEN OPEN */
.custom-faq .accordion-button:not(.collapsed) .icon::before {
    content: "–";
    font-size: 26px;
}

/* BODY */
.custom-faq .accordion-body {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 0 24px 22px;
    background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .custom-faq .accordion-button {
        font-size: 15px;
        padding: 18px;
    }
}
