.popup_wrap input {
  display: none;
}

.popup_overlay {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.2s, transform 0s 0.2s;
	transform: scale(0);
}

.popup_trigger {
	position: absolute;
	width: 100%;
	height: 100%;
}

.popup_content {
	position: relative;
	align-self: center;
	padding: 25px 25px 25px 25px;
	box-sizing: border-box;
	line-height: 1em
}

.close_btn {
	position: absolute;
	top: 5px;
	right: 33px;
	font-size: 20px;
	color: #FFFFFF;
	cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.2s;
}

.open_btn {
	cursor: pointer
}

.popup_content img{
	align-self: center;
	width: 100%;
	max-height: 650px
}
