/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 999999; /* Sit on top */
	left: 0;
	top: 0;
	width: 100vw; /* Full width */
	height: 100vh; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	display: flex;
	flex-direction: column;
	background-color: #719175;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #fff;
	border-radius: 12px;
	width: 60%; /* Could be more or less, depending on screen size */
	/*
  background-image: url("../img/popup-bg.jpg");
  background-size: cover;
*/
}

/* The Close Button */
.popup-close {
	color: #fff;
	float: right;
	font-size: 28px;
	font-weight: bold;
	text-align: end;
	align-self: center;
}

.popup-close:hover,
.popup-close:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.popup-heading {
	font-weight: 200;
	color: #000;
	justify-self: center;
	text-align: center;
	flex: auto;
}

.popup-txt {
	justify-self: center;
	text-align: center;
	padding: 2rem;
}

.popup-divider {
	width: 100%;
	background-color: #fff;
	color: #000;
}

.popup-image-container {
	display: flex;
	justify-content: center;
}

.popup-logo {
	max-width: 200px;
}

.popup-header-row {
	display: flex;
}

.modal-content p {
	justify-self: center;
	text-align: center;
	padding: 10px;
	color: #000;
}

.modal-content h2 {
	justify-self: center;
	text-align: center;
	padding: 10px;
	color: #000;
}
