:root {
	--tkcm-dock-chat: #1677d2;
	--tkcm-dock-whatsapp: #1fbf56;
	--tkcm-dock-email: #f0a72f;
	--tkcm-dock-top: #8b8b8b;
	--tkcm-dock-ring: #ffffff;
}

.tkcm-contact-dock {
	position: fixed;
	right: 22px;
	bottom: 24px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 8px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body.tkcm-contact-dock-ready .tkcm-contact-dock {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

body.tkcm-contact-dock-ready .tk-floating-contact,
body.tkcm-contact-dock-ready .scrollToTop {
	display: none !important;
}

.tkcm-contact-dock__item,
.tkcm-contact-dock__item:visited {
	position: relative;
	display: grid;
	box-sizing: border-box;
	width: 50px;
	min-width: 50px;
	height: 50px;
	min-height: 50px;
	margin: 0;
	padding: 0;
	place-items: center;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	border: 2px solid var(--tkcm-dock-ring) !important;
	border-radius: 50% !important;
	text-decoration: none !important;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
	appearance: none;
}

.tkcm-contact-dock__item:hover,
.tkcm-contact-dock__item:focus-visible {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	outline: 3px solid rgba(255, 255, 255, .9);
	outline-offset: 2px;
	transform: translateX(-3px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
	filter: brightness(1.04);
}

.tkcm-contact-dock .tkcm-contact-dock__item > svg {
	display: block;
	flex: 0 0 22px;
	width: 22px !important;
	min-width: 22px !important;
	max-width: 22px !important;
	height: 22px !important;
	min-height: 22px !important;
	max-height: 22px !important;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

.tkcm-contact-dock__label {
	position: absolute;
	top: 50%;
	right: 58px;
	display: flex;
	min-height: 30px;
	align-items: center;
	padding: 0 10px;
	color: #fff;
	-webkit-text-fill-color: #fff;
	background: #111;
	border: 1px solid #3b3b3b;
	opacity: 0;
	pointer-events: none;
	transform: translate(8px, -50%);
	transition: opacity 180ms ease, transform 180ms ease;
	white-space: nowrap;
	font: 800 10px/1.2 Urbanist, "Work Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.tkcm-contact-dock__item:hover .tkcm-contact-dock__label,
.tkcm-contact-dock__item:focus-visible .tkcm-contact-dock__label {
	opacity: 1;
	transform: translate(0, -50%);
}

.tkcm-contact-dock__item--chat {
	background: var(--tkcm-dock-chat) !important;
}

.tkcm-contact-dock__item--whatsapp {
	background: var(--tkcm-dock-whatsapp) !important;
}

.tkcm-contact-dock__item--email {
	background: var(--tkcm-dock-email) !important;
}

.tkcm-contact-dock__item--top {
	background: var(--tkcm-dock-top) !important;
}

body.tk-chat-open .tkcm-contact-dock {
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
}

@media (max-width: 900px) {
	.tkcm-contact-dock {
		right: 10px;
		bottom: max(12px, env(safe-area-inset-bottom));
		gap: 7px;
	}

	.tkcm-contact-dock__item,
	.tkcm-contact-dock__item:visited {
		width: 48px;
		min-width: 48px;
		height: 48px;
		min-height: 48px;
	}

	.tkcm-contact-dock .tkcm-contact-dock__item > svg {
		flex-basis: 21px;
		width: 21px !important;
		min-width: 21px !important;
		max-width: 21px !important;
		height: 21px !important;
		min-height: 21px !important;
		max-height: 21px !important;
	}

	.tkcm-contact-dock__label {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tkcm-contact-dock,
	.tkcm-contact-dock__item,
	.tkcm-contact-dock__label {
		transition: none;
		scroll-behavior: auto;
	}
}

@media print {
	.tkcm-contact-dock {
		display: none !important;
	}
}
