// ============================================================================
// :: OVERLAY
// ============================================================================
.o-overlay {
	content: "";

	position: fixed;
	top: 0;
	left: 0;
	z-index: $z-index-highest;

	display: block;
	width: 100%;
	height: 100%;

	background-color: $background-color-black;
	opacity: 0;

	transition: opacity 0.3s ease-in-out;

	pointer-events: none;
}

// ============================================================================
// :: States
// ============================================================================
.o-overlay {

	&.is-open {
		opacity: 0.3;

		pointer-events: auto;
	}
}

// ============================================================================
// :: Modifiers
// ============================================================================
.o-overlay--highest {
	z-index: $z-index-highest + 2;
}
