/* RCP FAQ - arrows */
.rcp-5a-faq {
    margin: 28px 0 10px;
    padding: 22px 24px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    background: #fff;
}

.rcp-5a-faq > h2,
.rcp-5a-faq .rcp-5a-faq-title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    color: #222;
}

.rcp-5a-faq-item + .rcp-5a-faq-item {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.rcp-5a-faq-question {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: #111;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    list-style: none;
}

.rcp-5a-faq-question::-webkit-details-marker {
    display: none;
}

.rcp-5a-faq-question::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 14px;
    line-height: 1;
    color: #111;
    transition: transform .2s ease;
}

.rcp-5a-faq-item[open] .rcp-5a-faq-question::before {
    transform: rotate(90deg);
}

.rcp-5a-faq-answer {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.rcp-5a-faq-answer p:last-child {
    margin-bottom: 0;
}

.single-product .rcp-5a-faq {
    box-shadow: 0 2px 10px rgba(0,0,0,.03);
}

@media (max-width: 767px) {
    .rcp-5a-faq {
        margin-top: 22px;
        padding: 18px 16px;
        border-radius: 8px;
    }

    .rcp-5a-faq > h2,
    .rcp-5a-faq .rcp-5a-faq-title {
        font-size: 1.1rem;
    }

    .rcp-5a-faq-question {
        font-size: 15px;
        padding-left: 22px;
    }

    .rcp-5a-faq-question::before {
        font-size: 13px;
        top: 2px;
    }

    .rcp-5a-faq-answer {
        font-size: 14px;
        line-height: 1.65;
    }
}