#customPopup {
    /* Your existing styles for the popup */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    padding:10px;
}

#customPopup.show {
    opacity: 1;
    visibility: visible;
}

#main.dimmed {
    opacity: 0.5;
    transition: opacity 0.8s ease;
}
#custom-shipping-message {
    margin-bottom:15px;
}
#custom-shipping-message {
	border: 2px solid navy;
	padding: 20px 12px 20px 12px;
	background: #fffde6;
	/* color: white; */
}