/* root */
:root {
	--logo-h: 2em;
	--logo-w: 3.4em;
	--wa-icon-height: 2em;
	--wa-icon-width: 2.3em;
	--wa-bg-color: #25D366;
	--color-base: #72a2d8;
	--color-greenpale: #60D6BE;
	--color-green: #72D875;
	--color-blue: #A6C4E6;
}


/* header */
.wpe-header {
	background-color: var(--color-base);
	background-image: linear-gradient(135deg, var(--color-base), var(--color-greenpale));
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em;
}

.wpe-header .logo {
	height: var(--logo-h);
	width: var(--logo-w);
	-webkit-mask-size: var(--logo-w) var(--logo-h);
	-webkit-mask-image: url(../img/logo.svg);
	-webkit-mask-repeat: no-repeat;
	mask-size: var(--logo-w) var(--logo-h);
	mask-image: url(../img/logo.svg);
	mask-repeat: no-repeat;
	background-color: #fff;
}

.wpe-header h1 {
	font-size: 1.2rem;
	text-align: right;
	margin: 0 !important;
	padding: 0 !important;
}


/* price tag */
.wpe-price-tag {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* wa link */
.wpe-wa-link {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
}

.wpe-wa-link main {
	background: var(--wa-bg-color);
	border-radius: 100px;
	overflow: hidden;
	padding: 1em;
}

.wpe-wa-link a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	gap: .5em;
	font-size: 1.2em;
	text-decoration: none;
	transition: all .15s ease-in;
	border-radius: 100px;
}

.wpe-wa-link a:hover {
	text-shadow: 0 0 .5em #555;
	/* transform: scale(1.05); */
}

.wpe-wa-link span {
	-webkit-mask-size: var(--wa-icon-width) var(--wa-icon-height);
	-webkit-mask-image: url(../img/icons/whatsapp.svg);
	-webkit-mask-repeat: no-repeat;
	mask-size: var(--wa-icon-width) var(--wa-icon-height);
	mask-image: url(../img/icons/whatsapp.svg);
	mask-repeat: no-repeat;
	width: var(--wa-icon-width);
	height: var(--wa-icon-height);
	background-color: #fff;
}

/* btns */
.btn-mktg.wpe-btn-continue {
	background: linear-gradient(180deg, var(--color-greenpale) 0%, var(--color-green) 100%) !important;
	cursor: pointer;
}

/* media */
@media(max-width: 1011px) {
	.wpe-price-tag {
		flex-direction: row;
	}

	.wpe-wa-link {
		justify-content: center;
	}
}

/* overrides */
.pricing-recommended-plan {
	background-image: radial-gradient(circle, var(--color-blue) 0%, var(--color-blue) 48%, var(--color-base) 85%, var(--color-base) 98%) !important;
}