.optin-form {
	margin:2% auto 5%;
	padding:2% 5%;
}
.glue_block_layer {
	background: rgb(38,38,38);
	opacity: 0.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.glue_popup {
	height: auto;
	width: 550px;
	box-shadow: 0px 0px 12px #3a3a3a;
	-moz-box-shadow: 0px 0px 12px #3a3a3a;
	-webkit-box-shadow: 0px 0px 12px #3a3a3a;
	background: #fff;
	-webkit-animation: zoomin 1s;
	animation: zoomin 1s;
	border:6px solid #98f942;
}

.glue_content {
	padding: 5px;
	margin:0 auto;
}

.glue_close {
	cursor: pointer;
	position: relative;
	top: -15px;
	left: 15px;
	float: right;
	font-family: Arial;
	font-size: 16px;
	background-color: #2d2d2d;
	color: #f2f2f2;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	border: 1px solid #303030;
	box-shadow: 0px 0px 2px #4d4d4d;
	-moz-box-shadow: 0px 0px 2px #4d4d4d;
	-webkit-box-shadow: 0px 0px 2px #4d4d4d;
	border-radius: 20px;
}

.green-button {
	display:block;
	border-style:none;
	border-radius:42px;
	z-index:3;
	width:296px;
	height:45px;
	background:rgba(75,182,84,1);
	box-shadow:none;
	text-shadow:none;
	color:#fff;
	font-size:19px;
	line-height:22px;
	font-weight:700;
	font-family:Montserrat;
	font-style:normal;
	text-align:center;
	background-repeat:no-repeat;
	margin:3% auto!important;
	-webkit-appearance: none;
    -moz-appearance: none;
     appearance: none;
}
.green-button:hover {
 background:rgba(57,173,65,1);
 box-shadow:none;
 color:#fff;
} 
.green-button:active {
 background:rgba(47,164,55,1);
 box-shadow:none;
 color:#fff;
}
.optin-input {
	display:block;
	width:98%;
	height:auto;
	font-size:17px;
	line-height:26px;
	margin:2% auto;
	padding:1% 2%;
	border:1px thin #c2c2c2;
	
}
.heading {
	font-size:28px;
	line-height:140%;
	text-align:center;
	margin:1% auto;
	font-weight:700;
	color:#000;
}
.subhead {
	font-size:17px;
	font-weight:400;
	line-height:140%;
	text-align:center;
	margin:1% auto 8%;
	color:#000;
}
@media only screen and (max-width: 600px) {
	.glue_popup {
	height: auto;
	width: 450px;
	}
}
@media only screen and (max-width: 475px) {
	.glue_popup {
	height: auto;
	width: 350px;
	}
	.optin-input {
		max-width:275px;
	}
	.optin-form {
		padding:2%;
	}
	.subhead {
	font-size:16px;
	}
}
/* 
CSS3 animation keyframes.
*/
@-webkit-keyframes zoomin {

  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  40% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes zoomin {

	0% {
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	40% {
		-ms-transform: scale(1.02);
		transform: scale(1.02);
		opacity: 1;
	}

	100% {
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	
}
@keyframes zoomin {

	0% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	40% {
		-webkit-transform: scale(1.02);
		-ms-transform: scale(1.02);
		transform: scale(1.02);
		opacity: 1;
	}
  
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}