$('.btn__arrow__stroke').click(function() {
let dir = $(this).text() == 'Пред.' ? 'prev' : 'next';
if (dir == 'prev') {
if ($('ul.tabs li.active').prev().length) {
$('ul.tabs li.active').prev().addClass('active').siblings().removeClass('active');
$('.tab_content.active').prev().show().addClass('active').siblings().hide().removeClass('active');
}
} else {
if ($('ul.tabs li.active').next().length) {
$('ul.tabs li.active').next().addClass('active').siblings().removeClass('active');
$('.tab_content.active').next().show().addClass('active').siblings().hide().removeClass('active');
}
}
});