.faq-accordion {
    padding-top: 35px;
    padding-bottom: 40px;
}

.customers--dark .faq-accordion {
    @media (min-width:768px) {
        padding-top: 60px;
        padding-bottom: 70px;
    }
}

.faq-accordion__title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;

    @media (min-width:768px) {
        margin-bottom: 50px;
        font-size: 32px;
    }
}

.faq-list__item {
    margin-bottom: 15px;

    &:last-child {
        margin-bottom: 0;

        .faq-list__a {
            padding-bottom: 0;
        }
    }
}

.faq-list__q {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 35px;
    font-size: 18px;
    font-weight: 400;
    color: var(--brand-green);
    cursor: pointer;
    position: relative;
    transition: color .2s ease-in-out;

    &:before {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        background-image: url(../../../img/icons/linea/arrows_circle_plus.svg);
        background-size: 24px 24px;
        position: absolute;
        left: 0;
        top: 0px;
    }

    &.expanded {
        color: var(--brand-primary);

        &:before {
            background-image: url(../../../img/icons/linea/arrows_circle_minus.svg);
        }
    }

    @media (min-width:768px) {
        font-size: 21px;
    }
}

.faq-list__a {
    padding: 10px 0 25px 35px;
    font-size: 16px;
    font-weight: 300;
    color: var(--brand-grey-light);

    p {
        margin-bottom: 15px;

        &:last-child {
            margin-bottom: 0;
        }
    }
}