.product-line-faq {
    margin-top: 40px;
}

.product-line-faq__title {
    margin-bottom: 20px;
}

.product-line-faq__item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 40px 16px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    font-weight: 600;
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FF272C;
    border: 1px solid #FF272C;
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .faq-question:hover::after {
        background: transparent;
        color: #FF272C;
    }
    .faq-question:hover {
        color: #FF272C;
    }
}

.faq-item.is-open .faq-question::after {
    content: "−";
    background: transparent;
    color: #FF272C;
}

.faq-item.is-open .faq-question {
    color: #FF272C;
}

.faq-answer {
    display: none;
    padding: 0 0 10px;
}

.faq-answer * {
    margin: 5px 0 !important;
}

.faq-item.is-open .faq-answer {
    display: block;
}