/* 10/02/2025 */
.adp-faqs .adp-faqs-item {
    padding-top: .625rem;
    padding-bottom: .625rem;
    padding-left: 0;
    margin-bottom: 0;
    border-bottom-style: solid;
    border-bottom-width: .0625rem;
    border-bottom-color: #eee;
}
.adp-faqs .adp-faqs-item:first-child {
    border-top: none;
}
.adp-faqs-question {
    display: flex;
    align-items: center;
    color: #003746;
    padding-top: .625rem;
    padding-bottom: .625rem;
    cursor: pointer;
}
.adp-faqs-question.open .adp-icon {
    transform: rotate(180deg);
}
.adp-faqs-question>*:not(.adp-icon) {
    padding-right: 1.25rem;
}
.adp-faqs-question .adp-icon {
    transition: transform .35s ease;
    margin-left: auto;
    fill: #003746;
    flex-shrink: 0;
    max-width: 1.25rem;
}
.adp-faqs-question .adp-icon.open {
    transform: rotate(180deg);
}
.adp-faqs-content {
    transition: all .35s ease;
    max-height: 0;
    height: auto;
    overflow: hidden;
}
.adp-faqs-content[data-open=true] {
    max-height: 100vh;
    margin-bottom: .625rem;
}
