@charset "utf-8";
.overlay {
	width: 100%;
	position: absolute;
	/*top: 0;
	bottom: 0;*/
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
	z-index: 997;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
	background: #fff;
	border-radius: 0px;
	width: 90%;
	position: relative;
	/*transition: all 5s ease-in-out;*/
	z-index: 998;
	margin-top: 70px;
	margin-right: auto;
	margin-bottom: 70px;
	margin-left: auto;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.popup titl {
	margin-top: 0;
	color: #00386d;
	font-family: centuryf;
	z-index: 999;
	font-size: 24px;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #00386d;
}
.popup .content {
	max-height: 100%;
	overflow: auto;
	text-align: justify;
	background-image: url(../img/popup-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

@media screen and (max-width: 700px){
  .popup{
    width: 90%;
  }
}

