#cboxOverlay {
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .6);
	z-index: 2000;
}

#colorbox {
	background: $bg_white;
	padding: 30px;
	@include border-radius(4px);
	@include box-shadow(0 0 3px rgba(0, 0, 0, .3));
	z-index: 2001;
	overflow: hidden;

	&.iframe {
		padding: 0;
	}

	.cboxIframe {
		height: 100%;
		width: 100%;
	}
}

#cboxLoadedContent span {
	padding-left: 80px;
	position: relative;
	display: block;
	margin: 0;
	min-height: 48px;
	font-size: 15px;
	line-height: 1.4em;
}

.lb_content {
	display: none;

	#cboxLoadedContent & {
		display: block;
	}

	.button {
		margin: 25px 10px 3px;
	}
}