.bekaa-tawk-facade {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000003;
	width: 64px;
	height: 60px;
	min-width: 64px;
	min-height: 60px;
	max-width: 64px;
	max-height: 60px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition:
		opacity 180ms ease,
		visibility 180ms ease,
		transform 180ms ease;
	--tawk-header-background-color: #1c1c1c;
	--tawk-header-text-color: #ffffff;
}

.bekaa-tawk-facade:focus {
	outline: none;
}

.bekaa-tawk-facade:focus-visible .bekaa-tawk-facade__button {
	border: 1px solid #0066ff;
	box-shadow: 0 0 0 1px rgba(0, 102, 255, 0.4);
}

.bekaa-tawk-facade__button {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	width: 60px;
	height: 60px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 0;
	border-radius: 100%;
	background: #1c1c1c;
	background: var(--tawk-header-background-color);
	color: #ffffff;
	color: var(--tawk-header-text-color);
	box-shadow: 0 4px 4px 0 hsla(0, 0%, 51%, 0.08);
	overflow: hidden;
	z-index: 1000;
}

.bekaa-tawk-facade__button::before {
	position: absolute;
	inset: 0;
	display: block;
	border-radius: inherit;
	background: #1c1c1c;
	content: "";
	z-index: -1;
}

.bekaa-tawk-facade__round {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bekaa-tawk-facade__icon {
	display: block;
	width: 32px;
	height: 32px;
	transform: rotate(0deg);
}

.bekaa-tawk-facade__icon path {
	fill: #ffffff;
	fill: var(--tawk-header-text-color);
}

.bekaa-tawk-facade--loading .bekaa-tawk-facade__button {
	animation: bekaa-tawk-facade-loading 900ms ease-in-out infinite alternate;
}

.bekaa-tawk-facade--hidden {
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	transform: scale(0.98);
}

@keyframes bekaa-tawk-facade-loading {
	from {
		box-shadow: 0 4px 4px 0 hsla(0, 0%, 51%, 0.08);
	}

	to {
		box-shadow: 0 4px 10px 0 hsla(0, 0%, 35%, 0.22);
	}
}
