/* Position the Popup form */
.popup {
position: relative;
width: 130%;
top: 80px;
}
/* Hide the Popup form */
.form-popup {
display: none;
position: fixed;
top: 135px;
border: 2px solid #666;
z-index: 9;
background-color: rgba(210,210,210,.95);
overflow-y: scroll;
padding: 10px 20px;
height: 300px;
width: 70%;
}
/* Styles for the form container */
.form-container {
max-width: 300px;
padding: 20px;
background-color: #fff;
}
function openForm() {
document.getElementById(“popupForm”).style.display=”block”;
}
function closeForm() {
document.getElementById(“popupForm”).style.display=”none”;
}