.ts-chat-bar {
	display: none;
	position: fixed;
	z-index: 999999;
	left: 0;
	right: 0;
	bottom: 0;
	height: calc(64px + env(safe-area-inset-bottom));
	padding-bottom: env(safe-area-inset-bottom);
	background: #fff;
	box-shadow: 0 -3px 16px rgba(0, 0, 0, .16);
	font-family: inherit;
}

.ts-chat-item {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 3px;
	padding: 7px 4px;
	background: var(--ts-chat-bg);
	color: var(--ts-chat-text) !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	text-decoration: none !important;
	-webkit-tap-highlight-color: transparent;
}

.ts-chat-item:hover,
.ts-chat-item:focus {
	color: var(--ts-chat-text) !important;
	filter: brightness(.92);
	text-decoration: none !important;
}

.ts-chat-item .dashicons {
	width: 24px;
	height: 24px;
	font-size: 24px;
	line-height: 24px;
}

.ts-chat-whatsapp-icon {
	display: block;
	width: 25px;
	height: 25px;
	flex: 0 0 25px;
}

@media (prefers-reduced-motion: no-preference) {
	.ts-chat-item { transition: filter .18s ease; }
}
