#capture-modal
{
	display: none;
	position: fixed;
	right:0;
	left:0;
	top:0;
	bottom: 0;
	background-color: rgba(0,0,0,0.4);
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	box-sizing:border-box;

}

.download-links li
{
	position: relative;
}

.download-links li a.download-link
{
	height: 100% !important;
}

.download-links li a.download-link h2
{
	top:40%;
	position: relative;
}


.capture-modal-body
{
	position: relative;
	left: 0;
	width:100%;
	height: auto;
	padding:30px;
	color:white;
	margin-top: 50%;
	box-sizing: border-box;
	
}

.capture-modal-body h3
{
	width: 100%;
	margin:0;
	text-align:center;
	display: inline-block;
	font-size: 24px;
}

.capture-modal-header span
{
	right:0px;
	top:0px;
	position: absolute;
	font-size: 26px;
    padding: 20px;
    cursor: pointer;
    top:-10px;
    right: -5px;
}

.capture-modal-body form
{
	width: 100%;
	
}


.capture-modal-body p
{
	text-align: center;
	font-size: 20px;
}

.capture-modal-body form input[type="email"],.capture-modal-body form input[type="text"]
{
	width:90%;
	display: block;
	margin: 20px auto;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	outline: 0;
	padding:6px;
	text-align: center;
}
.capture-modal-body form button[type="submit"]
{  -webkit-appearance: none;
		display: block;
	margin: 20px auto;
	width:150px;
	height: 30px;
	padding:5px;
	background-color: white;
	border:0;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	font-size: 18px;
	color:'#333';
	border-radius: 5px;
	cursor: pointer;
}

.capture-modal-body form button[type="submit"]:hover
{  
	background-color: #eee;

}

@media(min-width: 768px)
{
	.capture-modal-body
	{
		position: absolute;
		top:50%;
		margin-top: -150px;
		left: 50%;
		margin-left: -250px;
		width:500px;
		height:auto;
		border:2px solid #333;
		border-radius: 5px;
	}

}
