/**
 * Blackout
 *
 * NB: Only used for product image lightbox at the moment, but previously used for pop-up forms.
 */

.blackout {
	display: none;
	position: fixed;
	z-index: 1000000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.blackout::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.8;
}

.blackout-contain {
	display: none;
	position: absolute;
	z-index: 1000001;
	left: 50%;
	top: 50%;
	max-width: 95vw;
	max-height: 95vh;
	transform: translate(-50%, -50%);
}

.blackout-content {
	position: relative;
	z-index: 1000002;
	max-width: 100%;
	max-height: 100%;
	padding: 15px;
	box-shadow: 0 0 10px 0 #000000;
	border: #E75454 1px solid;
	background-color: #fff;
	text-align: center;
}

.blackout-close {
	position: absolute;
	z-index: 1000003;
	top: 5px;
	right: 5px;
	color: #000;
	height: 30px;
	width: 30px;
	font-size: 30px;
	line-height: 1em;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
