/* Accordions */
[accordion="true"] > :nth-child(1) {
    padding: 0;
    background-color: transparent;
}
[accordion="true"] > :nth-child(1):focus-visible {
    outline-color: currentColor;
}
[accordion="true"] > :nth-child(2) {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: visibility 250ms ease, opacity 500ms ease, max-height 350ms ease;
    will-change: height;
}
[accordion="true"] [aria-expanded="true"] .hearing-test__accordion-caret, 
[accordion="true"] [aria-expanded="true"] .filter-group__toggle-caret {
    transform: rotateZ(180deg);
}
@media (max-width: 767px) {
    [accordion="true"] > .filter-group__content {
        margin-left: auto;
        margin-right: auto;
    }
}
/* When open, show the content / target */
/* And don't hide the content in the Editor */
[accordion="true"] [aria-expanded="true"] + :nth-child(2),
.w-editor-edit-fade-in [accordion="true"] > :nth-child(2) {
    /* max-height may need to be adjusted based on content length */
    max-height: 10000px;
    overflow: visible;
    visibility: visible;
    opacity: 1;
}
[accordion="true"] > :nth-child(2) {
    max-height: 0;
    opacity: 0;
    padding-top: 0rem;
}
/* End Accordions */