.faq_list{
    position: relative;
    color: #020302; 
    margin-bottom: 20px;
}
.faq_item{
    border-bottom: 1px solid #E3E3E3;
    padding: 25px 0;
}
.faq_item_title{
    position: relative;
}
.faq_item_title .faq_item_title_inner p {
    margin-bottom: 0;   
}
.faq_show_all .faq_item_title{
    font-size: 20px;
    line-height: 26px;    
}
.faq_item_title_inner{
    position: relative;
    cursor: pointer;
    font-size: 20px;
    line-height: 26px;  
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 50px;
}

.faq_item_title_inner:before{
    position: absolute;
    content: '';
    right: 0;
    width: 48px;
    height: 49px;
    background: url(../img/faq-plus.svg) no-repeat center center;
    cursor: pointer;
    transition: .2s;
}
.faq_item_title_inner.open:before{
    background: url(../img/faq-minus.svg) no-repeat center center;
}
.faq_item_body{
    font-size: 16px;
    line-height: 22px;
    box-sizing: border-box;
    display: none;
    color: #212529;
    padding-top: 16px;
}
.faq_item_body p:last-child {
    margin-bottom: 0;
}