.acfacc-list {
    display: flex;
    flex-direction: column;
}

.acfacc-item {
    background: transparent;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    overflow: hidden;
}

.acfacc-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    margin: 0;
}

.acfacc-question:hover,
.acfacc-question:focus,
.acfacc-question:active {
    background: transparent !important;
    box-shadow: none !important;
}

.acfacc-title {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.acfacc-icon {
    flex-shrink: 0;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
}

.acfacc-icon-open { display: none; }
.acfacc-item.is-open .acfacc-icon-closed { display: none; }
.acfacc-item.is-open .acfacc-icon-open  { display: inline-flex; }

.acfacc-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease;
}

.acfacc-item.is-open .acfacc-content {
    opacity: 1;
}

.acfacc-content-inner {
    padding-right: 44px;
}

.acfacc-content-inner > *:first-child { margin-top: 0; }
.acfacc-content-inner > *:last-child  { margin-bottom: 0; }
