<script>
var msgBox = document.querySelectorAll('.msgControl');
var msgBoxContainer = document.querySelectorAll('.product .message');
for (let i = 1; i < msgBox.length; i++) {
msgBox[i].classList.remove('required');
msgBox[i].style.display = 'none';
}
for (let i = 1; i < msgBoxContainer.length; i++) {
msgBoxContainer[i].style.display = 'none';
}
</script>