#drip-modal {
	display: none;
}

#drip-modal .underlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.8);
    cursor: pointer;
    animation: fadein .5s;
}

#drip-modal .modal {
	z-index: 1;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	font-size: 14px;
	width: 600px;
	height: 330px;
	padding: 30px;
	background-color: #f7f9fb;
	border: 8px solid #fff;
	-webkit-box-shadow: 0 1px 5px rgba(0,0,1,0.3),inset 0 0 18px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 5px rgba(0,0,1,0.3),inset 0 0 18px rgba(0,0,0,0.1);
	box-shadow: 0 1px 5px rgba(0,0,1,0.3),inset 0 0 18px rgba(0,0,0,0.1);
}

#drip-modal .modal h1 {
	color: #314046;
	font-size: 28px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}

#drip-modal .modal p {
	font-size: 18px;
	margin-bottom: 18px;
}

#drip-modal .modal .email {
	font-size: 14px;
	height: 48px;
	width: 320px;
	border: 1px solid #cecece;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	background-color: #fff;
	padding: 0 15px;
	line-height: 35px;
	margin-right: 5px;
	
}

#drip-modal .modal .bad-email {
	border: 1px solid red;
}

#drip-modal .modal .button {
	height: 50px;
	width: 180px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	border-color: #479dbb;
	background-color: #fe6500;
	background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #fe6500), color-stop(100%, #f47c0f));
	background-image: -webkit-linear-gradient(bottom, #fe6500 0%,#f47c0f 100%);
	background-image: -moz-linear-gradient(bottom, #fe6500 0%,#f47c0f 100%);
	background-image: -o-linear-gradient(bottom, #fe6500 0%,#f47c0f 100%);
	background-image: linear-gradient(bottom, #fe6500 0%,#f47c0f 100%);
	text-shadow: 0 1px 0 #619741;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #e1e1e1;
	cursor: pointer;
}

#drip-modal .modal span {
	padding-top: 10px;
	color: #999;
	display: block;
	text-align: center;
}

#drip-modal .modal a {
	display: block;
	text-align: center;
	font-style: italic;
	padding-top: 20px;
}
