.wtp-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(15, 23, 42, .38);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity .22s ease;
}

.wtp-overlay.wtp-visible {
	display: flex;
	opacity: 1;
}

.wtp-modal {
	position: relative;
	width: min(430px, 100%);
	box-sizing: border-box;
	padding: 30px 30px 28px;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 24px 80px rgba(15, 23, 42, .22);
	font-family: inherit;
	color: #111827;
	transform: translateY(12px) scale(.98);
	transition: transform .25s ease;
}

.wtp-visible .wtp-modal {
	transform: translateY(0) scale(1);
}

.wtp-close {
	position: absolute !important;
	right: 14px !important;
	top: 14px !important;

	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	max-width: 34px !important;

	padding: 0 !important;
	margin: 0 !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	box-sizing: border-box !important;

	border: 1px solid #c5744a !important;
	border-radius: 50% !important;

	background: transparent !important;
	background-color: transparent !important;

	color: transparent !important;

	font-size: 0 !important;
	line-height: 0 !important;

	cursor: pointer !important;

	transform: none !important;
	box-shadow: none !important;

	transition:
		background-color .18s ease,
		border-color .18s ease,
		transform .18s ease !important;
}

/* Prima diagonale della X */
.wtp-close::before,
.wtp-close::after {
	content: "" !important;

	position: absolute !important;

	left: 50% !important;
	top: 50% !important;

	width: 20px !important;
	height: 1px !important;

	margin: 0 !important;

	background: #c5744a !important;

	border: 0 !important;
	border-radius: 0 !important;

	transform-origin: center !important;

	transition: background-color .18s ease !important;
}

/* X */
.wtp-close::before {
	transform: translate(-50%, -50%) rotate(45deg) !important;
}

.wtp-close::after {
	transform: translate(-50%, -50%) rotate(-45deg) !important;
}

/* HOVER */
.wtp-close:hover {
	background: #c5744a !important;
	background-color: #c5744a !important;

	border-color: #c5744a !important;

	transform: scale(1.05) !important;
}

/* X bianca al passaggio */
.wtp-close:hover::before,
.wtp-close:hover::after {
	background: #ffffff !important;
}

.wtp-icon {
	display: flex;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	margin-bottom: 18px;
	box-shadow: 0 8px 22px rgba(37, 211, 102, .24);
}

.wtp-content h2 {
	margin: 0 35px 9px 0;
	font-size: 24px;
	line-height: 1.18;
	letter-spacing: -.02em;
	color: #111827;
}

.wtp-content p {
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.55;
	color: #64748b;
}

.wtp-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	box-sizing: border-box;
	padding: 14px 18px;
	border-radius: 12px;
	background: #25D366;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 8px 18px rgba(37, 211, 102, .20);
	transition:
		transform .16s ease,
		box-shadow .16s ease,
		background .16s ease;
}

.wtp-button:hover {
	background: #1ebe5d;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(37, 211, 102, .26);
}

body.wtp-no-scroll {
	overflow: hidden;
}

@media (max-width: 767px) {

	.wtp-overlay {
		align-items: flex-end;
		padding: 12px;
	}

	.wtp-modal {
		width: 100%;
		border-radius: 20px;
		padding: 24px 20px 20px;
	}

	.wtp-content h2 {
		font-size: 21px;
	}

	.wtp-content p {
		font-size: 15px;
	}

	.wtp-icon {
		width: 52px;
		height: 52px;
		margin-bottom: 14px;
	}
}