.credifas-faq-item {
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #f4f6fb;
    font-family: "Open Sans", "Lato", sans-serif;
}

.credifas-faq-item *,
.credifas-faq-item *::before,
.credifas-faq-item *::after {
    box-sizing: border-box;
}

.credifas-faq-item__heading {
    margin: 0;
}

.credifas-faq-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    min-height: 71px;
    margin: 0;
    padding: 16px 36px 16px 30px;
    border: 0;
    border-radius: 22px;
    outline: 0;
    background: transparent;
    color: #5c51d1;
    font: 600 18px/1.25 "Open Sans", "Lato", sans-serif;
    text-align: left;
    cursor: pointer;
}

.credifas-faq-item__button:focus-visible {
    box-shadow: inset 0 0 0 2px #5c51d1;
}

.credifas-faq-item__indicator {
    display: block;
    flex: 0 0 17px;
    width: 17px;
    height: 9px;
    transition: transform 260ms ease;
}

.credifas-faq-item.is-open .credifas-faq-item__indicator {
    transform: rotate(180deg);
}

.credifas-faq-item__panel {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        height 360ms cubic-bezier(.22, .8, .22, 1),
        opacity 220ms ease;
}

.credifas-faq-item.is-open .credifas-faq-item__panel {
    opacity: 1;
}

.credifas-faq-item__answer {
    padding: 0 72px 24px 30px;
}

.credifas-faq-item__answer p {
    max-width: 760px;
    margin: 0;
    color: #606476;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}

@media (max-width: 767px) {
    .credifas-faq-item {
        border-radius: 18px;
    }

    .credifas-faq-item__button {
        min-height: 68px;
        padding: 14px 18px;
        border-radius: 18px;
        font-size: 16px;
        line-height: 21px;
    }

    .credifas-faq-item__answer {
        padding: 0 52px 22px 18px;
    }

    .credifas-faq-item__answer p {
        font-size: 15px;
        line-height: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .credifas-faq-item__indicator,
    .credifas-faq-item__panel {
        transition: none;
    }
}
