.wddtabfaqs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wddtabfaqs-item {
    margin-bottom: 1em;
    border-bottom: 1px solid #eee;
}

.wddtabfaqs-question {
    cursor: pointer;
    padding: 1em 0;
    margin: 0;
    position: relative;
    padding-right: 30px;
}

.wddtabfaqs-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.wddtabfaqs-question.active::after {
    content: '-';
}

.wddtabfaqs-answer {
    display: none;
    padding: 1em 0;
}

.wddtabfaqs-answer.active {
    display: block;
}
