<!-- Добавляем в стандартный аккордеон иконки -->
<!-- Инструкции: https://sitebelov.ru/kak-sdelat-akkordeon-s-ikonkami-na-tilde -->
<script>
appendAccordeonIcons('.uc-acc-icon');
function appendAccordeonIcons(id) {
const $wrapper = $(id);
$wrapper.find('.t668__col, .t-col').each(function() {
const $header = $(this).find('.t668__title, .t585__title');
$header.css({
display: 'flex',
'align-items': 'center'
});
const $originalIcon = $(this).find('.t668__img, .t585__img').eq(0);
const src = $originalIcon.attr('src');
$originalIcon.remove();
const $icon = $(`<img style="width: 30px; margin-right: 10px;" src="${src}">`)
$header.prepend($icon);
});
}
</script>