Жилет утепленный WARM c контрастным подкладном и воротником-стойкой
Утеплитель - синтепон плотностью 220 г/м², верхний материал - нейлон с пропиткой от ветра и дождя 210T
Жилет на молнии с черным пулером, с 2-мя наружными карманами на молнии «в листочку»
Широкая стёжка, с..
// Reference the color shape that was drawn over the image
const overlay = document.getElementById("product-shape33");
// Click on a color
var el = document.getElementsByClassName("color33");
for (var i = 0; i < el.length; i++) {
el[i].onclick = changeColor33;
}
function changeColor33(e) {
// get the hex color
let hex = e.target.getAttribute("data-hex");
// set the hex color
overlay.style.fill = hex;
}