  .instructions {
  text-align:center;
  font-size:20px;
  margin: 15vh;
}  

/* //////////////////////////////////////////////////////////////////////////////////////////////
	//   Default Modal Styles   //
////////////////////////////////////////////////////////////////////////////////////////////// */
/*   This is the background overlay   */
.backgroundOverlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000000;
	opacity: .85;
	filter: alpha(opacity=85);
	-moz-opacity: .85;
	z-index: 101;
	display: none;
}
/*   This is the Popup Window   */
.delayedPopupWindow {
	display: none;
	position: fixed;
	width: auto;
	max-width: 400px;
	height: 400px;
	top: 15%;
	left: 35%;
	background-color: #efefef;
	border: 2px solid #333;
	z-index: 1002;
	padding: 10px 20px;
}
/*   This is the closing button  */
#btnClose {
	width:100%;
	display: block;
	text-align: right;
	text-decoration: none;
	color: #333;
    font-weight: bold;
}
/*   This is the closing button hover state  */
#btnClose:hover {
	color: #c90c12;
}
/*   This is the description headline and paragraph for the form   */
#delayedPopup > div.formDescription {
	float: left;
	display: block;
	width: 100%;
	padding: 1% 0%;
	font-size: 18px;
	color: #666;
	clear: left;
	    line-height: 40px;
}
/*   This is the styling for the form's headline   */
#delayedPopup > div.formDescription h3 {
	color: #444444;
	font-size: 25px;
	line-height: 40px;
}
@media only screen and (max-width: 600px) {
  .delayedPopupWindow {
    display: none;
    position: sticky;
    width: auto;
    max-width: 400px;
    height: 300px;
    top: 20%;
    left: 10%;
    background-color: #efefef;
    border: 2px solid #333;
    z-index: 1002;
    padding: 10px 20px;
}

}