.overlay {
	background-color: rgba(0,0,0,0.7);
	display: none;
		width: 100%;
		height: 100%;
	position: fixed;
		top: 0;
		left: 0;
		z-index: 500;
}
.overlay p:last-child {
	margin-bottom: 0;
}
.modal {
	background-color: #fff;
	color: #000;
	display: block;
		max-width: 90%;
	padding: 20px;
	position: absolute;
		top: 50%;
		left: 50%;
		z-index: 520;
}
.formSent {
	width: 35ch;
		top: calc( 50% - 5rem );
		left: calc( 50% - ( 35ch / 2 ));
}
.modal h1 {
	font-weight: 700;
	margin-bottom: 1rem;
}
.modalX {
	color: #000;
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 1em;
	position: absolute;
		top: .5rem;
		right: .75rem;
}
.modal a {
	text-decoration: none;
}
.modal a:hover, .modal a:active {
	text-decoration: underline;
}
.modalX:hover {
	cursor: pointer;
}
.modal ul.sheets {
	margin-left: 40px;
	list-style-type: disc;
}

@media screen and (max-width: 399px) {
	.formSent {
		width: calc( 90% - 2.5rem );
		top: calc( 50% - 5rem );
		left: 5%;
	}	
}