.modal {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
  display: flex;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.modal.active {
	opacity: 1;
	pointer-events: auto;
}

.modal-content {
  background-color: white;
  margin: 0 auto;
  padding: 30px;
  width: 75%;
	overflow: hidden;
	max-height: 80%;
	border-radius: 8px;
	position: relative;
}

.blind .modal-content .map {
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.ptitle {
	margin-bottom: 1vh;
}

.prof-body {
	max-height: 70vh;
	overflow-y: auto;
  	overflow-x: hidden;
}

.close {
  color: #aaa;
  float: right;
  cursor: pointer;
position: absolute;
    top: 5px;
    right: 15px;
    font-size: 40px;
}

.prof-block .ptitle {
	color: #24305e;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}

.blind .prof-block .ptitle {
	color: #000;
}

.prof-block .description {
	color: #727272;
}

.blind-theme2 .modal {
	color: #292929;
}

.blind.blind-fontsize2 .prof-block .info-line {
	font-size: 23px;
}

.blind.blind-fontsize3 .prof-block .info-line {
	font-size: 27px;
}

.blind.blind-spacing2 .prof-block .info-line {
	letter-spacing: 2px;
}

.blind.blind-spacing3 .prof-block .info-line {
	letter-spacing: 2px;
}