#bd_modal-overlay {
	background: rgba(0,0,0,0.7);
	z-index: 100000;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
}
	#bd_modal-overlay #bd_modal-wrapper {
		position: absolute;
		left: 50%;
		top: 50%;
		background: white;
		color: black;
	}

		#bd_modal-overlay #bd_modal-wrapper .bd_modal-close {
			position: absolute;
			bottom: -25px;
			font-size: 12px;
			text-transform: lowercase;
			right: 0;
			color: white;
			text-decoration: none;
		}
			#bd_modal-overlay #bd_modal-wrapper .bd_modal-close:before {
				content: "(x)";
				margin-right: 5px;
			}
			#bd_modal-overlay #bd_modal-wrapper .bd_modal-close:hover {
				text-decoration: none;
				color: #d8d8d8;
			}
		#bd_modal-overlay #bd_modal-wrapper a {
			text-decoration: underline;
		}
		#bd_modal-overlay #bd_modal-wrapper h2 {
			margin-top: 0;
			margin-bottom: 20px;
		}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	#bd_modal-overlay{
		padding-top: 15px;
	}
	#bd_modal-overlay #bd_modal-wrapper {
		position: relative;
		top: auto;
		left: auto;
		margin: 0 auto !important;
	}
}