.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
	background: rgba(0, 0, 0, 0.6);
}


.modal {
	display: block;
	width: 400px;
	max-width: 80%;
	height: 300px;
	position: fixed;
	z-index: 100;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #000;
	border-radius: 10px;
	box-shadow: 0 0 0 4px #fff inset;
	background-color: rgba(0,0,0,0.9);
	color: #fff;
	font-size: 36px;
	text-align: center;
}

.modal > .modal-p {
	width: 100%;
}

.modal-p > p {
	margin-top: 36px;
	font-size: 36px;
}

.modal-img {
	margin-top: 24px;
	width: 100%;
	height: 100px;
}

.modal-img > img {
	width: 100px;
	height: 100px;
	text-align: center;
}

.modal > input {
	margin-top: 18px;
	width: 75%;
	max-width: 150px;
	height: 48px;
	font-size: 24px;
}

.modal > .modal-hint-p {
	width: 100%;
}

.modal-hint-p > p {
	margin-top: 18px;
	font-size: 18px;
}


.closed {
	display: none;
}
