.re-faq__item { border-bottom: 1px solid #e5e5e5; }
    .re-faq__question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        background: none;
        border: 0;
        text-align: left;
        font-weight: 600;
        cursor: pointer;
    }
    .re-faq__question:focus{
        outline: 0;
    }
    .re-faq__icon {
        flex: 0 0 auto;
        width: 12px;
        height: 12px;
        margin-left: 16px;
        position: relative;
    }
    .re-faq__icon::before,
    .re-faq__icon::after {
        content: "";
        position: absolute;
        background: currentColor;
        transition: transform .3s ease;
    }
    .re-faq__icon::before { top: 5px; left: 0; width: 12px; height: 2px; }
    .re-faq__icon::after { top: 0; left: 5px; width: 2px; height: 12px; }
    .re-faq__item.is-open .re-faq__icon::after { transform: rotate(90deg); }
    .re-faq__answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .re-faq__answer-inner { padding: 0 0 16px; }
    