{"version":3,"sources":["global.js"],"names":["phoneInputs","document","querySelectorAll","forEach","input","addEventListener","e","inputValue","target","value","replace","length","slice","formattedValue","substring","$","slick","speed","slidesToScroll","autoplay","autoplaySpeed","centerPadding","arrows","slidesToShow","responsive","breakpoint","settings"],"mappings":"AAAA,MAAMA,YAAcC,SAASC,iBAAiB,UAE9CF,YAAYG,QAAQC,IAChBA,EAAMC,iBAAiB,QAAS,SAAUC,GACtC,IAAIC,EAAaD,EAAEE,OAAOC,MAAMC,QAAQ,MAAO,IAM/C,GAJIH,EAAWI,OAAS,KACpBJ,EAAaA,EAAWK,MAAM,EAAG,KAGX,IAAtBL,EAAWI,OACXL,EAAEE,OAAOC,MAAQ,OACd,CACH,MAAMI,EAAiB,IAAMN,EAAWO,UAAU,EAAG,GAAK,KAAOP,EAAWO,UAAU,EAAG,GAAK,IAAMP,EAAWO,UAAU,EAAG,IAC5HR,EAAEE,OAAOC,MAAQI,OAM7BE,EAAE,gBAAgBC,MAAM,CACpBC,MAAO,IACPC,eAAgB,EAChBC,UAAU,EACVC,cAAe,IACfC,cAAe,OACfC,QAAQ,EACRC,aAAc,EAEdC,WAAY,CACR,CACIC,WAAY,KACZC,SAAU,CAENH,aAAc,EACdJ,UAAU,IAGlB,CACIM,WAAY,IACZC,SAAU,CAENH,aAAc,EACdJ,UAAU,IAGlB,CACIM,WAAY,IACZC,SAAU,CAENH,aAAc,EACdJ,UAAU","sourcesContent":["const phoneInputs = document.querySelectorAll('.phone');\n\nphoneInputs.forEach(input => {\n input.addEventListener('input', function (e) {\n let inputValue = e.target.value.replace(/\\D/g, '');\n\n if (inputValue.length > 10) {\n inputValue = inputValue.slice(0, 10);\n }\n\n if (inputValue.length === 0) {\n e.target.value = '';\n } else {\n const formattedValue = '(' + inputValue.substring(0, 3) + ') ' + inputValue.substring(3, 6) + '-' + inputValue.substring(6, 10);\n e.target.value = formattedValue;\n }\n });\n});\n\n//logo slider\n$('.logo-slider').slick({\n speed: 300,\n slidesToScroll: 1,\n autoplay: false,\n autoplaySpeed: 4000,\n centerPadding: '80px',\n arrows: false,\n slidesToShow: 7,\n\n responsive: [\n {\n breakpoint: 1024,\n settings: {\n\n slidesToShow: 4,\n autoplay: true,\n }\n },\n {\n breakpoint: 768,\n settings: {\n\n slidesToShow: 3,\n autoplay: true,\n }\n },\n {\n breakpoint: 480,\n settings: {\n\n slidesToShow: 2,\n autoplay: true,\n }\n }\n ]\n});"],"file":"../global-min.js"}