$(window).on('cubeitopenpopup', function() {
initFancySelect();
});
+
+ $(document).on('click touchend', function() {
+ $('.validation-messages').hide();
+ });
}
function initFancySelect() {
background-color: #343c44;
border-radius: 17px;
position: fixed;
- bottom: 10px;
+ bottom: 5%; // For older browsers
+ bottom: 5vw; // For browsers that understand vw units
left: 50%;
transform: translateX(-50%);
color: #fff;
font-size: 14px;
text-align: center;
z-index: 1000;
- pointer-events: none;
+ //pointer-events: none; // Disabled to allow messages to be hidden on click
display: none;
br {