#mchimp_blackout, #sub_box {
	display:none;
}

#mchimp_blackout {
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	z-index:9999;
}

#sub_box {
	float:left;
	position: fixed;
	background-color:white;
	width: 400px;
	height:auto;
	max-height: 80%;
	overflow: hidden;
	text-align: left;
	padding:15px;
	
	overflow-y: scroll;
	
	font-family:'Roboto';
	
	top:50%;
	left:50%;

	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	
	/*Fix Blurry Font*/
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-filter: blur(0.1px);
	
	z-index:99999;
}

#sub_box .close {
	background-color:black;
	position: absolute;
	right:0; top:0;
	color:white;
	line-height: 1;
	width:25px; height:25px;
	cursor:pointer;
}
#sub_box .close:before {
	font-family: 'FontAwesome';
	content: "\f00d";
	
	position:absolute;
	left:50%;top:50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}
#sub_box .close:hover {
	background-color:#424242;
}

#sub_box .field {
	display:block;
	margin-top: 20px;
}

#sub_box span {
	line-height: 1;
	margin-bottom: 6px;
	color: #424242;
	display:block;
	font-weight: 500;
}
#sub_box input {
	display:block;
	width:100%;
	box-sizing: border-box;
	border:solid 1px #ccc;
	font-size: 13pt;
	padding:10px;
	font-weight:500;
}

#sub_box h1 {
	margin:0;
	padding:0;
	color: black;
	text-align: left;
	font-weight: 700;
}

.sub_submit {
	border:0 !important;
	margin-top: 15px;
	text-align:center;
	background-color:black;
	color:white;
	cursor: pointer;
	width: 100%;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

.sub_submit .inner {
	padding:20px;
}

.sub_submit i{margin-left:5px;}
.sub_submit:hover{background-color:#3F3F3F;}

#sub_box .status {
	margin-top:15px;
	font-weight:500;
}

#sub_box ._content {
	
}

#sub_box iframe {
	border:none;
	width:100%;
	height:auto;
	float:left;
}

@media screen and (max-width: 800px) {
	
	#sub_box {
		width:100%;
		max-height: 100%;
		box-sizing: border-box;
		overflow-y: scroll;
	}
	
	#sub_box .close {
		width:35px;
		height:35px;
	}
	
	
}