$(".navigation__item").click(function () {
$(this).toggleClass("arrow_active");
if ($(".navigation__item").not(this) && $(event.target) != $(event.target).hasClass('navResponsive__spoiler-wrapper')) {
$(".navigation__item").not(this).removeClass("arrow_active");
}
});