.adobe-connect-lightbox {
	position: fixed;
	left: 0;
	top: 10%;
	width: 100%;
	height: 80%;
	background: rgba(237, 237, 237, 0.87);
	z-index: 99999;
	padding: 30px;
}

.adobe-connect-lightbox.loading:before {
	left: 50%;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
}

.adobe-connect-lightbox:before {
	transition: all 200ms;
	background: url(../img/loading.png);
	animation: spin 1200ms cubic-bezier(0.75, 0.23, 0.55, 0.8) infinite;
	background-position: center;
	background-repeat: no-repeat;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	margin-left: 0;
	margin-top: 0;
	background-color: #d80927;
	border-radius: 100%;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	} to {
		transform: rotate(360deg);
	}
}

.adobe-connect-lightbox-close {
	position: absolute;
	cursor: pointer;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: url(../img/close.png);
	background-position: center;
	background-repeat: no-repeat;
	background-color: #d80927;
	border-radius: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

.adobe-connect-lightbox.loading .adobe-connect-iframe {
	transform: scale(0.9);
	opacity: 0;
}

.adobe-connect-iframe {
	transition: all 250ms ease-out;
	transform: scale(1);
	transform-origin: top;
	background: white;
	position: relative;
	opacity: 1;
	top: 0;
	left: 0;
	margin-left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
}
