{"version":3,"file":"../custom-accordion.js","names":["$","customAccordions","document","querySelectorAll","length","each","this","click","next","slideToggle","find","toggleClass","jQuery"],"sources":["custom-accordion.js"],"mappings":"AAAA,cAEA,SAAWA,GACT,IAAIC,EAAmBC,SAASC,iBAAiB,8BAC5CF,EAAiBG,QAGtBJ,EAAEC,GAAkBI,MAAK,WACvBL,EAAEM,MAAMC,OAAM,WACZP,EAAEM,MAAME,OAAOC,YAAY,KAC3BT,EAAEM,MAAMI,KAAK,YAAYC,YAAY,SACvC,GACF,GACD,CAXD,CAWGC","sourcesContent":["(function ($) {\n const customAccordions = document.querySelectorAll('.faq-qa-row .question-line');\n\n if (!customAccordions.length) {\n return;\n }\n\n $(customAccordions).each(function () {\n $(this).click(function () {\n $(this).next().slideToggle(250);\n $(this).find('.faq-btn').toggleClass('opened');\n });\n });\n})(jQuery);\n"]}