/* Styles for the popup window and overlay */ .popup { display: none; /* Hidden by default */ position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); padding-top: 14%; } .popup-content { background-color: #fefefe; margin: 5% auto; padding: 20px; border: 1px solid #888; width: 80%; max-width: 600px; } .close-btn { color: #aaa; float: right; font-size: 28px; font-weight: bold; } .close-btn:hover, .close-btn:focus { color: black; text-decoration: none; cursor: pointer; } A lightweight blend of singleface knit fleece and contrast contoured side panels delivers comfort and warmth on cold days. The Knit Jacket is just as versatile on the city streets as it is on a mountain trail. The high collar allows for core temperature regulation and provides a warm, comfortable fit. The Knit Jacket features single-hand hem adjustment, articulated elbows for a free range of movement and is built with 62% Recycled Polyester for a reduced environmental impact. Features:Dry moisture management, single hand hem adjustment, contour side panels, on-seam hand warmer pockets, articulated elbows, low-profile chin saver, Polyester. Size Chart × HOW TO MEASURE CHEST SIZE Measure around the fullest part of the chest, under the arms and around the shoulder blades. Women's Small Medium Large XL XXL Chest (in) 33.5-35.5 35.5-38 38-41 41-44.5 44.5-48.5 Sleeve (in) 31-31.5 32-32.5 33-33.5 33.5-34 34-34.5 // Get the popup var popup = document.getElementById("popup"); // Get the button that opens the popup var btn = document.getElementById("popupBtn"); // Get the element that closes the popup var span = document.getElementsByClassName("close-btn")[0]; // When the user clicks the button, open the popup btn.onclick = function() { popup.style.display = "block"; } // When the user clicks on (x), close the popup span.onclick = function() { popup.style.display = "none"; } // When the user clicks anywhere outside of the popup, close it window.onclick = function(event) { if (event.target == popup) { popup.style.display = "none"; } }