

.estrella-faq {
    width: 100%;
    margin: 0 auto;
}

.estrella-faq .faq-card {
    border: none;
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
    margin: 0;
    background: #ffffff;
}

.estrella-faq .faq-header {
    padding: 0;
    background: #ffffff;
    border: none;
}

.estrella-faq .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 20px 5px;

    color: #222222;
    font-size: 17px;
    font-weight: 600;

    text-decoration: none !important;
    cursor: pointer;

    transition: color 0.2s ease;
}

.estrella-faq .faq-question:hover {
    color: #8a6d3b;
}



.estrella-faq .faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-left: 20px;
}

/* Horizontal */

.estrella-faq .faq-icon::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #333333;
    border-bottom: 1.5px solid #333333;
    transform: rotate(45deg);
    top: 4px;
    left: 5px;
    transition: transform 0.25s ease;
}


/* Vertical */

.estrella-faq .faq-question:not(.collapsed) .faq-icon::before {
    transform: rotate(225deg);
    top: 8px;
}


/* Open = minus */

.estrella-faq .faq-question:not(.collapsed) .faq-icon::after {
    height: 0;
}


/* Answer */

.estrella-faq .faq-answer {
    padding: 0 45px 22px 5px;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;

    background: #ffffff;
}


/* Mobile */

@media (max-width: 767px) {

    .estrella-faq .faq-question {
        padding: 17px 3px;
        font-size: 16px;
    }

    .estrella-faq .faq-answer {
        padding: 0 30px 18px 3px;
        font-size: 14px;
    }

}