.wap-popup {
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	width: 100%;
	z-index: 9999999999;
	max-height: 100vh;
	overflow-y: scroll;

	background: #fff;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
	padding: 40px 54px 0 54px;
}

@media (min-width: 600px) {
	.wap-popup {
		width: 25%;
		right: -25%;
	}
}

.wap-popup-close {
	background: #000;
	border-radius: 75px;
	color: #fff;
	cursor: pointer;
	float: right;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: 300ms ease-in-out;
}

.wap-popup-close:hover {
	opacity: 0.85;
}

.wap-popup-close span {
	display: inline-block;
	font-size: 40px;
	font-weight: 100;
	line-height: 0;
	transition: 300ms ease-in-out;
}

.wap-popup-close:hover span {
	transform: rotate(90deg);
}

.wap-popup-title {
	color: #000;
	text-transform: none;
}

.wap-popup h2,
.wap-popup h3,
.wap-popup h4,
.wap-popup h5 {
	margin: 0;
}

.wap-popup select,
.wap-popup input {
	height: 48px;
	width: 100%;
}

.wap-popup select,
.wap-popup textarea,
.wap-popup input {
	background: #fff;
	border: 2px solid #d8d8d8;
	border-radius: 4px;
	box-shadow: none;
	transition: all 300ms ease-in-out;
}

.wap-popup textarea:hover,
.wap-popup input:hover {
	border-color: #000;
	box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.15);
}

.wap-popup input:focus,
.wap-popup textarea:focus {
	outline: 0;
}

.wap-popup .wpcf7-form.sent > *:not(.wpcf7-response-output) {
	display: none;
}
.wap-popup .wpcf7 form.sent .wpcf7-response-output {
	border: none;
}
