{"product_id":"rear-pouch","title":"Bolsa trasera","description":"\u003cstyle\u003e\u003c!--\n.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }\n\nbutton.accordion {\nbackground-color: #FFFFFF;\ncolor: #444;\ncursor: pointer;\npadding: 8px;\nwidth: 100%;\nborder: none;\ntext-align: left;\noutline: none;\nfont-size: 14px;\ntransition: 0.4s;\n}\n\nbutton.accordion.active, button.accordion:hover {\nbackground-color: #ddd;\n}\n\nbutton.accordion:after {\ncontent: '\\002B';\ncolor: #777;\nfont-weight: bold;\nfloat: right;\nmargin-left: 5px;\n}\n\nbutton.accordion.active:after {\ncontent: \"\\2212\";\n}\n#more {display: none;}\n.readMoreButton {\nbackground-color: #000000; color: white; border: none; text-decoration: \n}\ndiv.panel {\npadding: 0 18px;\nbackground-color: white;\nmax-height: 0;\noverflow: hidden;\ntransition: max-height 0.2s ease-out;\n}\n--\u003e\u003c\/style\u003e \u003cbutton class=\"accordion\"\u003eVideo\u003c\/button\u003e \n\u003cdiv class=\"panel\"\u003e\n\n\u003cdiv class=\"embed-container\"\u003e\u003ciframe width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/JkRfNHB12Gk\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\n\n\u003c\/div\u003e\n\n\u003cbutton class=\"accordion\"\u003eDetalles\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\n\u003cp\u003e - Incluye cápsula trasera + cordón elástico alargado \u003cbr\u003e- La bolsa trasera se integra perfectamente con las fundas de casco Mohawk, Mohawk Air y Gen4 Lo-Pro\u003cbr\u003e - Proporciona adaptabilidad específica para la misión.\u003cbr\u003e - Se fija de forma segura al casco mediante velcro, velcro debajo de las pestañas y cordón elástico de especificación militar.\u003cbr\u003e - Proporciona una nueva funcionalidad de vanguardia y una gestión universal de accesorios.\u003cbr\u003e - Emplea una nueva celda flexible trasera versátil que se adapta a todos los paquetes de baterías y contrapesos NVG comunes.\u003cbr\u003e - Tiene orificios de salida ubicados estratégicamente para todos los cables.\u003cbr\u003e - El exterior de celda semirrígida brinda a los accesorios traseros protección adicional contra impactos y tiene un área de bucle central para parches de identificación.\u003cbr\u003e\u003cbr\u003e El exterior semirrígido de la bolsa ofrece protección adicional contra impactos para los accesorios traseros y cuenta con un bucle central para parches de identificación. También cuenta con un compartimento inferior para guardar los cables de comunicación PTT cuando no se usa. Su conexión es firme y segura, y se puede poner y quitar en unos 60 segundos, lo que permite conectarlo o desconectarlo según la misión.\u003c\/p\u003e\n\n\n\u003c\/div\u003e\n\n\u003cbutton class=\"accordion\"\u003eDevoluciones\u003c\/button\u003e\n\u003cdiv class=\"panel\"\u003e\n\n\u003cbr\u003e\u003cb\u003ePolítica de devoluciones para clientes de EE. UU\u003c\/b\u003e .: Si no está 100 % satisfecho con su compra, puede devolver el producto y obtener un reembolso completo. Puede devolver un producto hasta 30 días después de la fecha de recepción. Todo producto que devuelva debe estar en las mismas condiciones en que lo recibió. Si tiene alguna pregunta o desea obtener información sobre devoluciones desde fuera de EE. UU., contáctenos en customercare@agilitegear.com.\u003c\/div\u003e\n\n\u003cscript\u003e\/\/ \u003c![CDATA[\nfunction myFunction() {\nvar dots = document.getElementById(\"dots\");\nvar moreText = document.getElementById(\"more\");\nvar btnText = document.getElementById(\"myBtn\");\nvar panel = document.getElementById(\"full\");\n\n\nif (dots.style.display === \"none\") {\ndots.style.display = \"inline\";\nbtnText.innerHTML = \"Read more\"; \nmoreText.style.display = \"none\";\n} else {\ndots.style.display = \"none\";\nbtnText.innerHTML = \"Read less\"; \nmoreText.style.display = \"inline\";\npanel.style.maxHeight = \"none\";\n}\n}\n\/\/ ]]\u003e\u003c\/script\u003e\u003cscript\u003e\/\/ \u003c![CDATA[\n\/\/ W3C's JS Code\nvar acc = document.getElementsByClassName(\"accordion\");\nvar i;\n\nvar firstAccordion = acc[0];\nvar firstPanel = firstAccordion.nextElementSibling;\nfirstAccordion.classList.add(\"active\");\nfirstPanel.style.maxHeight = firstPanel.scrollHeight + \"px\";\n\n\/\/ Add onclick listener to every accordion element\nfor (i = 0; i \u003c acc.length; i++) {\nacc[i].onclick = function() {\n\/\/ For toggling purposes detect if the clicked section is already \"active\"\nvar isActive = this.classList.contains(\"active\");\n\n\/\/ Close all accordions\nvar allAccordions = document.getElementsByClassName(\"accordion\");\nfor (j = 0; j \u003c allAccordions.length; j++) {\n\/\/ Remove active class from section header\nallAccordions[j].classList.remove(\"active\");\n\n\/\/ Remove the max-height class from the panel to close it\nvar panel = allAccordions[j].nextElementSibling;\nvar maxHeightValue = getStyle(panel, \"maxHeight\");\n\nif (maxHeightValue !== \"0px\") {\npanel.style.maxHeight = null;\n}\n}\n\n\/\/ Toggle the clicked section using a ternary operator\nisActive ? this.classList.remove(\"active\") : this.classList.add(\"active\");\n\n\/\/ Toggle the panel element\nvar panel = this.nextElementSibling;\nvar maxHeightValue = getStyle(panel, \"maxHeight\");\n\nif (maxHeightValue !== \"0px\") {\npanel.style.maxHeight = null;\n} else {\npanel.style.maxHeight = panel.scrollHeight + \"px\";\n}\n};\n}\n\n\/\/ Cross-browser way to get the computed height of a certain element. Credit to @CMS on StackOverflow (http:\/\/stackoverflow.com\/a\/2531934\/7926565)\nfunction getStyle(el, styleProp) {\nvar value, defaultView = (el.ownerDocument || document).defaultView;\n\/\/ W3C standard way:\nif (defaultView \u0026\u0026 defaultView.getComputedStyle) {\n\/\/ sanitize property name to css notation\n\/\/ (hypen separated words eg. font-Size)\nstyleProp = styleProp.replace(\/([A-Z])\/g, \"-$1\").toLowerCase();\nreturn defaultView.getComputedStyle(el, null).getPropertyValue(styleProp);\n} else if (el.currentStyle) { \/\/ IE\n\/\/ sanitize property name to camelCase\nstyleProp = styleProp.replace(\/\\-(\\w)\/g, function(str, letter) {\nreturn letter.toUpperCase();\n});\nvalue = el.currentStyle[styleProp];\n\/\/ convert other units to pixels on IE\nif (\/^\\d+(em|pt|%|ex)?$\/i.test(value)) { \nreturn (function(value) {\nvar oldLeft = el.style.left, oldRsLeft = el.runtimeStyle.left;\nel.runtimeStyle.left = el.currentStyle.left;\nel.style.left = value || 0;\nvalue = el.style.pixelLeft + \"px\";\nel.style.left = oldLeft;\nel.runtimeStyle.left = oldRsLeft;\nreturn value;\n})(value);\n}\nreturn value;\n}\n}\n\/\/ ]]\u003e\u003c\/script\u003e","brand":"Agilite","offers":[{"title":"Ranger Green","offer_id":39652445257879,"sku":"8280RNG1SZ","price":16.11,"currency_code":"EUR","in_stock":true},{"title":"Coyote Tan","offer_id":39652445290647,"sku":"8280CYT1SZ","price":16.11,"currency_code":"EUR","in_stock":true},{"title":"Negro","offer_id":39652445323415,"sku":"8280BLK1SZ","price":16.11,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0556\/3600\/0919\/products\/Untitleddesign-2020-04-05T111629.554_1_c7663eb1-ae1e-498e-90f8-ea8d5f4c9fa7.png?v=1620196235","url":"https:\/\/agiliteinternational.com\/es-es\/products\/rear-pouch","provider":"Agilite Europe","version":"1.0","type":"link"}