/*
--------------------------------------
Container
--------------------------------------
*/

.simple-modal {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.simple-modal--active {
	background-color: rgba(0,0,0,0.5);
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

/*
--------------------------------------
Content
--------------------------------------
*/

.simple-modal__content {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	max-width: 500px;
	position: relative;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/*Close */

.simple-modal__close {
	color: #aaa;
	position: absolute;
	top: -5px;
	right: 10px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.simple-modal__close:hover {
	color: #000;
}

/*Title*/

.simple-modal__title {
	font-family: var(--e-global-typography-secondary-font-family);
	color: var(--e-global-color-secondary);
	line-height: 1.25;
	text-align: center;
	padding: 1em;
}