body.tawk-chat-open {
	overflow: hidden !important;
}

.tawk-chat-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(17, 17, 17, .48);
}

.tawk-chat-panel {
	width: 420px;
	max-width: 100%;
	height: calc(100vh - 32px);
	max-height: 720px;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.tawk-chat-header {
	min-height: 52px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 12px 0 18px;
	background: #111;
	color: #fff;
	font-family: Montserrat, Arial, sans-serif;
}

.tawk-chat-title {
	min-width: 0;
	flex: 1;
	font-size: 13px;
	font-weight: 700;
}

.tawk-chat-email {
	color: rgba(255, 255, 255, .78);
	font-size: 11px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tawk-chat-close {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: transparent;
	color: #fff;
	font: 28px/1 Arial, sans-serif;
	cursor: pointer;
}

.tawk-chat-close:hover,
.tawk-chat-close:focus-visible {
	background: rgba(255, 255, 255, .14);
	outline: none;
}

.tawk-chat-stage {
	position: relative;
	display: flex;
	min-height: 0;
	flex: 1;
	background: #fff;
}

.tawk-chat-frame {
	display: block;
	width: 100%;
	min-height: 0;
	flex: 1;
	border: 0;
	background: #fff;
}

.tawk-chat-loading,
.tawk-chat-fallback {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 28px;
	text-align: center;
	background: #fff;
	color: #333;
	font: 600 13px/1.5 Montserrat, Arial, sans-serif;
}

.tawk-chat-loading::before {
	content: "";
	width: 34px;
	height: 3px;
	background: #e8400a;
}

.tawk-chat-fallback[hidden],
.tawk-chat-loading[hidden] {
	display: none;
}

.tawk-chat-fallback a {
	color: #c93400;
	text-underline-offset: 3px;
}

@media (max-width: 600px) {
	.tawk-chat-overlay {
		padding: 0;
	}

	.tawk-chat-panel {
		width: 100%;
		height: 100%;
		max-height: none;
		border-radius: 0;
	}

	.tawk-chat-header {
		padding-left: 14px;
	}

	.tawk-chat-email {
		font-size: 10px;
	}
}
