.wrapper {
	overflow: hidden;
	min-height: 100%;
}

body.lock {
	overflow: hidden;
}

.popup {
	z-index: 999;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	transition: all 0.7s ease 0s;
}

.popup.open {
	opacity: 1;
	visibility: visible;
}

.popup.open .popup__content {
	transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
	opacity: 1;
}

.popup__area {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.popup__body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 10px;
	transition: all 0.8s ease 0s;
}

.popup__content {
	background-color: #f4f4ff;
	max-width: 800px;
	padding: 40px 20px 0px;
	position: relative;
	transition: all 0.8s ease 0s;
	opacity: 0;
	transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}

.box {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 40px;
	transition: all 0.5s ease;

}

.box svg {
	display: block;
}

.close-x {
	stroke: #4f4967;
	fill: transparent;
	stroke-linecap: round;
	stroke-width: 3;
}

.box:hover {
	transform: rotate(180deg);

}
.box:active {
	transform: rotate(180deg);

}

.popup__title {
	font-size: 40px;
	margin: 0px 0px 1em 0px;
}