/**
 * =============================================================================
 * Lightbox
 * =============================================================================
 *
 * This file deals with:
 *  * lightbox styles
 */

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	background: rgba(51,51,51,0.6);
	z-index: 990;
}

.lightbox {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;

	width: 540px;
	height: 340px;

	padding: 30px;
	margin: -200px 0 0 -300px;

	border-radius: 10px;
	border: 1px solid #71c3cd;
	background: #fff;
	z-index: 991;

	-webkit-box-shadow: 0 8px 22px -6px rgba(0,0,0,0.5);
	   -moz-box-shadow: 0 8px 22px -6px rgba(0,0,0,0.5);
	        box-shadow: 0 8px 22px -6px rgba(0,0,0,0.5);
}

.lightbox .close-button {
	display: block;

	width: 23px;
	height: 23px;

	border-radius: 23px;

	background: #cf1c6d url("../images/icon-close.png") no-repeat center center;

	position: absolute;

	top: 10px;
	right: 10px;
	cursor: pointer;
}