/**
 * Headwall WP Tutorials Popup : WPTPU
 *
 * https://wp-tutorials.tech/add-functionality/wordpress-popups-without-a-plugin/
 *
 */

.wptpu-outer {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: #3338;
	z-index: 1000;
	opacity: 0.0;
	transition: 0.3s opacity;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: flex;
}

.wptpu-outer.show {
	opacity: 1.0;
}

.wptpu-inner {
	max-width: 80%;
	position: relative;
	background-color: blue;
	color: white;
	padding: 2rem;
}

.wptpu-close-button {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 0;
	width: 2em;
	height: 2em;
	transform: translate(50%, -50%);
	border-radius: 50%;
	background-color: red;
	color: white;
	cursor: pointer;
}

.wptpu-inner p:last-child {
	margin-bottom: 0;
}