<style>
/* цвет активной кнопки */
.tbactive {background: linear-gradient(348deg, #dd54ff, #ff8686, #ffd255)}
</style>
<script>
$('[class*="tab"]:not(.tab1)').hide()
$('[href="#tab1"]').addClass('tbactive')
$('.tbbtn').each(function() {
$(this).find('a').click(function() {
$('.tbbtn a').removeClass('tbactive')
$(this).addClass('tbactive')
var tab = $(this).attr('href').slice(1)
$('.' + tab + '').fadeIn(200)
$('[class*="tab"]:not(.' + tab + ')').fadeOut(200)
})
})
</script>
https://ilda.top/prostye-vkladki-zero