#lightbox {
	z-index: 200;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.8);

	display: none;
	align-items: center;
	justify-content: center;
}

#lightbox .inner {
	max-height: 600px;
	max-width: 800px;
	width: 50%;
	min-width: 300px;
	min-height: 200px;
	padding: 6px 10px;
}

#lightbox .header {
	text-align: right;
}

#lightbox .close {
	padding: 5px;
	color: #ddd;
	font-size: 25px;
	line-height: 25px;
	font-weight: bold;
	text-decoration: none;
}

#lightbox .close:hover {
	color: white;
}

#lightbox #cta {
	display: none;
}

.iframe-container {
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
	background: black;
}

.iframe-container::before {
    content: "Loading";
    color: white;
    display: block;
    position: absolute;
    top: 45%;
    left: calc(50% - 50px);
    width: 100px;
    text-align: center;
}

.iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	border: 0;
	width: 100%;
	height: 100%;
}
