#overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background-color: rgba(0, 0, 0, 0.75); */
	z-index: 20000;
	display: none;
		background-attachment: scroll, fixed;
		background-color: #000;
		/*background-image: url("images/overlay.png"), url("../../images/banner.jpg");*/
		background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/background.jpg");
		background-position: top left, center center;
		background-repeat: repeat, no-repeat;
		background-size: auto, cover;
		color: #fff;
		padding: 4em 0 4em 0;
		text-align: center;
}

#popup {
	background-color: #600048;
	color: white;
	font-size: 1em;
	text-align: center;
	padding: 1em;
		border-radius: 5px;
  
	/* position: relative; */
	/* top: 10px; */
	width: 700px;
	max-width: 80%;
	margin: 0 auto;
	-webkit-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
	box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
	
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#popup h2 {
	margin-top: 0;
	color: #fff;
	font-size: 2em;
}

#popup p {
	margin-top: 0;
  color: #fff;
  font-size: 0.9em;
  display: block;
  margin-bottom: 1em;
}

#popup button {
	margin: 10px;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	color: #000;
	cursor: pointer;
	font-size: 1em;  
  font-weight: 600;
  -webkit-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.8);
  box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.8);
  font-family: "Source Sans Pro", sans-serif;
  background-color: #ffffef;
  border: none;
  display: inline-block;
  width: 150px;
}

#verifyBtn {
	margin-top: 20px;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-color: red;
	color: #fff;
	cursor: pointer;
  font-size: 17px;
  font-weight: 600;
}

#verifyBtn:hover,
#popup button:hover {
	background-color: black;
  color: #fff;
}

#overlay.show {
	display: block;
}

#popup-container {
  display: none;
}

@media only scress and (max-width:600px){
  #popup-container {
    width: 90%;
    height: 80%;
  }
  #verifyBtn {
	margin-top: 20px;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-color: #cc3535;
	color: #fff;
	cursor: pointer;
  font-size: 10px;
  font-weight: 400;
}
  
}
