#modal {
    position: fixed;
    font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    height: 100%;
    width: 100%;
	
}
.modalconent {
    position: absolute;
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 24px;
	top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
     background: rgba(66, 236, 245, 1.0);
    width: 60%;
    padding: 15px;
	text-align:center;
	-moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px;  
  border-radius: 10px 10px 10px 10px;
}

.closebutton  {

color:#FF9900;

}