.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{
    margin-bottom: 15px;
    position: relative;
}
.faq__item:last-child{margin-bottom: 0;}
.faq__item--boxed{
    padding: 5px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 5px 10px #aaaaaa52;
}
.faq_section {margin: 16px 0 32px;}
.faq__question{
    position: relative;
    padding: 15px 15px 15px 50px;
    transition: all 500ms ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    /* text-transform: uppercase; */
    margin: 0;
}
.faq__arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 15px;
    transition: all .3s ease;
}
.faq__question.active {background: #fff;}
.faq__question.active .faq__arrow{transform: rotate(-90deg);}
.faq__content{
    position: relative;
    display: none;
    padding: 0 0 0 50px;
    /* border-bottom: 1px solid #f2f2f2; */
}
.faq__answer{
    position: relative;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: normal;
    font-family: inherit;
}