#modal-popup {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(90,90,90);
	background-color: rgb(90,90,90, 0.8);
}

#modal-popup h5 {
	font-size: 1rem; 
}

#modal-popup p {
	font-size: var(--font-size-modal);
	margin-top: 1rem; 
}

#modal-popup ul {
	padding: 15px 20px;
	list-style-position: inside;
}

#modal-x {
	float: right;
}
.modal-header-div,
.modal-body, 
.modal-footer-div {
	padding: 10px 16px;	
}

.modal-body {
	font-size: var(--font-size-modal)
}

.modal-header-div {
	background-color: var(--did-blue);
	color: #fff;	
}

.modal-footer-div {
	margin-top: 1.5rem;
	background-color: #cfcfcf;
	color: black;	
	border-top: 2px solid var(--did-blue);
	padding: 10px;
}

.modal-content {
	position: relative;
	margin: auto;
	margin-top: 5rem;
	padding: 0px;
	border: 1px solid #888;
	width: 80%;
	background: #fefefe;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2),0 6px 20px 0px rgba(0,0,0,0.19);
	animation-name: animatetop;
	animation-duration: 0.4s;
}

.modal-x {
	color: #fff;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.modal-x:hover,
.modal-x:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}


@keyframes animatetop {
	from: top: -400px; opacity:0}
	to: top: 40px; opacity:1}
}