.depilart-whatsapp-float {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 2147483000;
	display: inline-flex;
	align-items: flex-end;
	justify-content: flex-end;
	text-decoration: none;
	isolation: isolate;
}

.depilart-whatsapp-float__bubble {
	position: absolute;
	right: 88px;
	bottom: 18px;
	width: max-content;
	max-width: min(240px, calc(100vw - 128px));
	padding: 12px 14px;
	border: 1px solid rgba(30, 41, 59, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.18);
	color: #26313f;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(8px, 8px, 0);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	visibility: hidden;
}

.depilart-whatsapp-float__bubble::after {
	position: absolute;
	right: -8px;
	bottom: 20px;
	width: 16px;
	height: 16px;
	background: #ffffff;
	box-shadow: 1px -1px 0 rgba(30, 41, 59, 0.06);
	content: "";
	transform: rotate(45deg);
}

.depilart-whatsapp-float__avatar {
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	overflow: hidden;
	border: 3px solid #21c063;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.depilart-whatsapp-float__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 38%;
	transform: scale(1.18);
}

.depilart-whatsapp-float:hover .depilart-whatsapp-float__avatar,
.depilart-whatsapp-float:focus-visible .depilart-whatsapp-float__avatar {
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
	transform: translateY(-2px);
}

.depilart-whatsapp-float.is-bubble-visible .depilart-whatsapp-float__bubble,
.depilart-whatsapp-float:hover .depilart-whatsapp-float__bubble,
.depilart-whatsapp-float:focus-visible .depilart-whatsapp-float__bubble {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}

@media (max-width: 640px) {
	.depilart-whatsapp-float {
		right: max(14px, env(safe-area-inset-right));
		bottom: max(14px, env(safe-area-inset-bottom));
	}

	.depilart-whatsapp-float__avatar {
		width: 64px;
		height: 64px;
	}

	.depilart-whatsapp-float__bubble {
		right: 76px;
		bottom: 12px;
		max-width: min(216px, calc(100vw - 104px));
		font-size: 13px;
	}
}
