#modal-container {
	display: none;
	position: fixed;
	z-index: 10;
	padding-top: 70px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

#modal-content {
	background-color: var(--bg-color);
	margin: auto;
	padding: 20px;
	width: 50%;
	border-radius: 10px;
	border: solid #777 3px;
}

.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	margin-left: 30px;
}

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