.datis-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* item */
.datis-faq-item {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;



}

/* header button */
.datis-faq-toggle {
    justify-content: space-between;
    appearance: none;
    border: 0;
    padding: 0px 20px;
    gap: 24px;
    background: #FFFFFF;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: start;
    cursor: pointer;
    flex-direction: row-reverse;
    border-radius: 16px;
}



.datis-faq-q {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: right;
    color: #090625;
}


.datis-faq-icn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icn-minus {
    display: none;
}

/* closed = plus visible */
.datis-faq-item.is-open .icn-plus {
    display: none;
}

.datis-faq-item.is-open .icn-minus {
    display: block;
}


.datis-faq-panel[hidden] {
    display: none;
}

.datis-faq-panel {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    gap: 32px;
    border: 1px solid #090625;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
}

.datis-faq-a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    text-align: right;
    color: rgba(9, 6, 37, 0.5);
}

@media screen and(max-width : 768px) {
    .datis-faq-q {
        font-size: 14px;
        line-height: 30px;
    }

    .datis-faq-a {
        font-size: 14px;
    }
}