.faqSection .faqItemHolder{}
.faqSection .faqItem{
    cursor:pointer;
    border-bottom: 1px solid var(--themePrimaryDark);
    margin-bottom: 1rem;
}
.faqSection .faqItem .question{
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0;
    font-size: 22px;
    font-weight: 400;
}
.faqSection .faqItem .answer{
    transition: all .2s ease-in-out;
    max-height:100dvh;
    overflow:auto;
}

.faqSection .faqItem .question button{
    transition: all .2s ease-in-out;
    transform: rotateZ(0deg);
    aspect-ratio: 1;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    width:45px;
    padding: 0 4px 0 0;
    border:none;
}
.faqSection .faqItem .question button svg{
    width:18px;
}
.faqSection .faqItem:not(.shown) .question button{
    transform: rotateZ(90deg);
}
.faqSection .faqItem:not(.shown) .answer{
    max-height:0;
    overflow:hidden;
}
.faqSection .faqItem:not(.shown) button{
    --bgColor:transparent;
    --txtColor: #fff;
    --borderColor: #fff;
}