
.faq-item {
    width: 40vw;
    min-width: 350px;
    margin-top: 1rem;
}
.item-question {
    background: #ffffff;
    color: rgb(55, 55, 55);
    font-size: 1rem;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.question-text {
    display: inline-block;
}
.arrows-container {
    margin: 0.4rem;
}
.item-answer {
    display: none;
    color: rgb(47, 47, 47);
    padding: 2rem;
}
.close {
    display: none;
}
.show-answer .item-answer {
    display: block;
    background: #EBE6DE;
}
.show-answer .close {
    display: inline;
}
.show-answer .expand {
    display: none;
}