.pa {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 10;
	padding: 20px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Open Sans";

	display: none;
}

.pa__modal {
	background-color: #fff;
	padding: 100px;
	cursor: default;
	position: relative;
}

.pa__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}
.pa__close::after, .pa__close::before {
	content: '';
	width: 135%;
	height: 3px;
	background: #E84E26;
	position: absolute;
	bottom: 0;
}
.pa__close::after {
	transform: rotate(-45deg);
	left: 0;
	transform-origin: left;
}
.pa__close::before {
	transform: rotate(45deg);
	right: 0;
	transform-origin: right;
}

.pa__title {
	font-size: 25px;
	line-height: 1.2;
	text-align: center;
	margin: 0;
}

.pa__form {
	display: flex;
	flex-direction: column;
}

.pa__input, .pa__button {
	border: none;
	background-color: #EEEEEE;
	font-size: 20px;
	line-height: 1;
	margin: 20px 0 0;
	color: #000;
	font-family: inherit;
	padding: 20px 30px;
	outline: none;
	widthL 100%;
}

.pa__button {
	background-color: #E84E26;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
}

.pa__aftertext {
	font-size: 16px;
	line-height: 1;
	margin: 30px 0 0;
}

.pa__aftertext span {
	color: #E84E26;
	cursor: pointer;
}

@media (max-width: 750px) {
	.pa {
		padding: 0;
	}
	.pa__modal {
		padding: 20px;
	}
	.pa__close {
		display: none;
	}
	.pa__title {
		font-size: 20px;
	}
	.pa__input, .pa__button {
		font-size: 16px;
		padding: 15px 20px;
	}
	.pa__aftertext {
		font-size: 13px;
		margin: 10px 0 0;
	}
}