@charset "utf-8";
/* CSS Document */

.modal {
	position: fixed;
	display: none;
	z-index: 9999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	padding: 20px;
	text-align: center;
	background-color: rgba(255,255,255,0.25);
	border-radius: 16px;
	font-size: 14px;
	color: #fff;
	-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.50);
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.50);
}
.modal p {
  margin-bottom:10px;
}
.modal a, .modal a:link, .modal a:visited, .modal a:hover {
  cursor:pointer;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}
.modal img {
	margin-bottom: 12px;
}
