.lightbox-overlay {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 500;
}

.lightbox-overlay .lightbox-close {
	width: 19px;
	height: 19px;
	position: absolute;
	display: inline-block;
	right: 9px;
	top: 9px;
	background: #676673;
	border-radius: 50%;
	line-height: 19px;
	cursor: pointer;
	z-index: 500;
	
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.lightbox-overlay .lightbox-close:hover {
	background: #807f8d;
}

.lightbox-overlay .lightbox-close img {
	width: 7px;
	height: 7px;
	vertical-align: top;
	margin-top: 6px;
	float: none !important;
}

.lightbox-overlay .lightbox-close-overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	/*
	background: rgba(0, 0, 0, 0.4);
	*/
	
	background: rgba(0,0,0,1);
	background: -moz-linear-gradient(left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 48%, rgba(0,0,0,0.7) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0.7)), color-stop(48%, rgba(0,0,0,0.6)), color-stop(100%, rgba(0,0,0,0.7)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 48%, rgba(0,0,0,0.7) 100%);
	background: -o-linear-gradient(left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 48%, rgba(0,0,0,0.7) 100%);
	background: -ms-linear-gradient(left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 48%, rgba(0,0,0,0.7) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 48%, rgba(0,0,0,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
	
	z-index: 500;
}

.lightbox-overlay .lightbox {
	position: relative;
	top: 20%;

	margin-left: auto;
	margin-right: auto;
	left: 0px;
	right: 0px;
	min-width: 300px;
	z-index: 500;
	
	max-height: 800px;

	box-shadow: 0px 0px 15px 15px #0d0c11;
	-webkit-box-shadow: 0px 0px 3px 3px #222;
	-moz-box-shadow: 0px 0px 3px 3px #222;
}

.lightbox-overlay .lightbox h2 {
	font-size: 20px;
	font-weight: bold;
	color: #2b2d42;
	text-align: center;
	margin-bottom: 42px;
}

.lightbox-overlay .lightbox-confirmation {
	text-align: center;
}

.lightbox-overlay .lightbox-confirmation h2 {
	padding: 0px !important;
	margin: 0px !important;
	text-align: center;
	color: #000;
}

.lightbox-overlay .lightbox-confirmation p {
}

.lightbox-overlay .lightbox-confirmation .buttons {
	margin-top: 40px;
	margin-bottom: 10px;
}

.lightbox-overlay .lightbox-confirmation .buttons button {
	margin: 0px 10px;
	padding: 5px 15px;
}

.lightbox .content {
	font-size: 13px;
	padding-bottom: 10px !important;
	
	max-height: 700px;
	overflow-y: auto;
}


.lightbox .content::-webkit-scrollbar {
	width: 9px;
	height: 9px;
	background: #222;
}

.lightbox .content::-webkit-scrollbar-thumb {
	background: #8a6066;
	border-radius: 3px;
}

.dialogDefaultWidth {
	width: 800px;
}

.dialogSmaller {
	width: 600px;
}

.dialogSocialFacebook {
	width: 600px;
}


@media only screen and (max-height: 500px) {
	.lightbox-overlay .lightbox {
		top: 10%;
		max-height: 400px;
	}
	
	.lightbox .content {
		max-height: 300px;
	}
}

@media only screen and (min-height: 501px) AND (max-height: 800px) {
	.lightbox-overlay .lightbox {
		top: 10%;
		max-height: 600px;
	}

	.lightbox .content {
		max-height: 500px;
	}
}