function Spoiler(){
let myspeed = 1000;
let itemHeight = $('.tab_item').height();
$('.tab_item').css('height','1265');
$('.tab__lookall-but').click(
function() {
$('.tab_item').animate({height:itemHeight}, myspeed);
$('.tab__lookall-but').toggleClass('active-button');
},
function() {
$('.tab_item').animate({height:1265}, myspeed);
$('.tab__lookall-but').toggleClass('active-button');
}
);
}