div#Modal {
	visibility: hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: scale(1.1);
	transition:
		visibility 0s linear 0.25s,
		opacity 0.25s 0s,
		transform 0.25s;
	z-index: 10;
}

div#Modal.show {
	visibility: visible;
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.5);
}

.modalContent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 25px;
	max-height: 90%;
	height: auto;
	width: 65%;
	border-radius: 9px;
	overflow: auto;
	box-sizing: border-box;
}

.closeModalBtn {
	float: right;
	cursor: pointer;
}

.closeModalBtn:hover {
	opacity: 1;
}

.modalContent h3 {
	margin-top: 0px;
}
