.loco-faq .section__title {
    margin-bottom: 16px
}

.loco-faq__wrapper {
    gap: 64px
}

.loco-faq__info,.loco-faq__list,.loco-faq__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.loco-faq__info,.loco-faq__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.loco-faq__list {
    gap: 16px;
    margin-top: 10px;
    width: 100%
}

.loco-faq__list-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    width: 100%
}

.loco-faq__list-item summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--card-bg);
    border-radius: 16px;
    color: var(--card-text);
    cursor: pointer;
    gap: 12px;
    list-style: none;
    -webkit-transition: margin-bottom .3s ease-in-out;
    transition: margin-bottom .3s ease-in-out
}

.loco-faq__list-item summary::-webkit-details-marker {
    display: none
}

.loco-faq__list-item .text-block {
    color: var(--card-text-secondary);
    height: 0;
    overflow: hidden;
    -webkit-transition: height .5s;
    transition: height .5s
}

.loco-faq__list-item_open {
    padding-bottom: 16px
}

.loco-faq__list-item_open summary {
    margin-bottom: 12px
}

.loco-faq__list-item_open summary .loco-faq__arrow svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.loco-faq__arrow {
    background: var(--contrast-bg);
    border-radius: 8px;
    height: 40px;
    padding: 8px;
    position: absolute;
    right: 24px;
    top: -10px;
    width: 40px
}

.loco-faq__arrow svg {
    -ms-flex-negative: 0;
    color: var(--contrast-color);
    flex-shrink: 0;
    height: 24px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 24px
}

.loco-faq__list-question {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    width: calc(100% - 88px)
}

@media (max-width: 900px) {
    .loco-faq__wrapper {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px
    }
}
