.q_item.active .q_item_question::before {
    transform: rotate(180deg);
}

.q_item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0px 36px 0px 36px;
    margin-bottom: 24px;
    transition: all .2s ease-in-out;
    box-shadow: 0px 0px 18px rgba(0, 123, 195, 0.3);
	border-radius: 20px;
}

.q_item_question {
    transition: all .2s ease-in-out;
    padding: 22px 48px 22px 0;
    cursor: pointer;
    font-family: 'nunito_sansextrabold';
    font-size: 17px;
    line-height: 24px;
    color: #333;
    position: relative;
}

.q_item_answer {
    border-top: 1px solid rgba(72, 72, 72, 0.3);
    padding-top: 19px;
    font-size: 16px;
    line-height: 162%;
    color: #484848;
    padding-bottom: 10px;
    display: none;
}

.q_item_question:before, .q_item_question:after {
    content: '';
    display: block;
    transition: all .2s ease-in-out;
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -3px;
    width: 14px;
    height: 8px;
    background-repeat: no-repeat;
    background-size: 14px 8px;
    transition: all .2s ease-in-out;
}

.q_item_question:after {
    opacity: 0;
}

.q_item_question:before {
    background-image: url(../img/load_bottom.svg);
}