.flexible-faq__item button,
.ekstra-faq__item button {
    background: white;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    border: none;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: left;
}

.flexible-faq__item,
.ekstra-faq__item {
    border: solid 1px #eee;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: .2s ease;
    text-align: left;
}

.flexible-faq,
.ekstra-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flexible-faq__answer,
.ekstra-faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    text-align: left;
}

.faq-animations-ready .flexible-faq__answer,
.faq-animations-ready .ekstra-faq__answer {
    transition:
        max-height 0.28s ease,
        opacity 0.2s ease;
}

.flexible-faq__item.is-active .flexible-faq__answer,
.ekstra-faq__item.is-active .ekstra-faq__answer {
    opacity: 1;
    padding-bottom: 25px;
}

.flexible-faq__answer h2,
.flexible-faq__answer h3,
.flexible-faq__answer h4,
.ekstra-faq__answer h2,
.ekstra-faq__answer h3,
.ekstra-faq__answer h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.flexible-faq__answer p,
.ekstra-faq__answer p {
    margin-top: 0;
}

.flexible-faq__answer p:last-child,
.ekstra-faq__answer p:last-child {
    margin-bottom: 0;
}

span.flexible-faq__icon,
span.ekstra-faq__icon {
    font-size: 0;
    display: flex;
    width: 12px;
    height: 12px;
    background-image: url(../images/plus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.flexible-faq__item.is-active span.flexible-faq__icon,
.ekstra-faq__item.is-active span.ekstra-faq__icon {
    background-image: url(../images/minus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.flexible-faq__question,
.ekstra-faq__question {
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
}

.flexible-faq__item.is-active,
.ekstra-faq__item.is-active {
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.05);
}

.flexible-faq__item:hover,
.ekstra-faq__item:hover {
    border-color: #C3CECA;
}

@media (max-width:767px) {

    .flexible-faq__item button,
    .ekstra-faq__item button {
        padding: 15px;
        font-size: 16px;
    }

    .flexible-faq__answer,
    .ekstra-faq__answer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .flexible-faq__item.is-active .flexible-faq__answer,
    .ekstra-faq__item.is-active .ekstra-faq__answer {
        padding-bottom: 20px;
    }
}