#mobile-popup-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
}

#mobile-popup {
	text-align: center;
	width: 100%;
	position: relative;
	/* background: linear-gradient(to bottom, #393085, #5C4FCE, #393085); */
	background: #FFF;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 2px 2px 16px 1px rgba(0, 0, 0, 0.30);
	max-width: 500px;
	margin: 0 auto;
}
#mobile-popup h2 {
	/* color: #FFF !important; */
	font-size: 35px !important;
	max-width: 300px;
	margin: 0 auto 30px;
	font-family: 'BalooBoldFont' !important;
	font-weight: 700 !important;
}
#mobile-popup p {
	/* color: #FFF !important; */
	font-family: 'BalooSemiBoldFont' !important;
	font-size: 20px;
	max-width: 280px; 
	margin: 0 auto 30px; 
}
#mobile-popup input {
	width: 80%;
	padding: 12px;
	margin-bottom: 10px;
}
#mobile-popup button {
	padding: 12px 15px;
	min-width: 200px;
	margin-top: 20px;
	border-radius: 40px !important;
	background: #F99C1C;
	box-shadow: inset 0 0 5.8px 0 #fff;
	font-family: 'NunitoMediumFont' !important; 
	font-size: 20px !important;
}

#mobile-popup button:hover {
	background-color: #392f84  !important;
	color: #FFF !important;
}
#mobile-popup .error-message {
	/* rgba(255,255,255,0.7); */
	color: rgba(0,0,0,0.6); 
} 

@media screen and (max-width: 600px) {
	#mobile-popup {
		max-width: 90%;
	}
}