.fc-chat-launcher {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 2147483001;
}

.fc-chat-launcher[hidden] {
	display: none;
}

.fc-chat-launcher__button {
	align-items: center;
	background: var(--ft-black);
	border: 0;
	border-radius: 50%;
	color: var(--ft-lime);
	cursor: pointer;
	display: flex;
	height: 60px;
	justify-content: center;
	padding: 0;
	position: relative;
	transition: transform .18s ease;
	width: 60px;
}

.fc-chat-launcher__button:hover {
	transform: translateY(-2px);
}

.fc-chat-launcher__button:focus-visible {
	outline: 3px solid var(--ft-lime);
	outline-offset: 3px;
}

.fc-chat-launcher__button svg {
	height: 24px;
	width: 24px;
}

.fc-chat-launcher__badge {
	align-items: center;
	background: #EF4444;
	border: 2px solid var(--ft-white);
	border-radius: 999px;
	color: var(--ft-white);
	display: flex;
	font-size: 11px;
	font-weight: 700;
	height: 21px;
	justify-content: center;
	line-height: 1;
	min-width: 21px;
	padding: 0 5px;
	position: absolute;
	right: -4px;
	top: -4px;
}

.fc-chat-launcher__badge[hidden] {
	display: none;
}

.fc-chat-launcher__panel {
	background: var(--ft-white);
	border-radius: 20px;
	bottom: calc(100% + 12px);
	box-shadow: 0 18px 38px rgba(5, 5, 7, .18);
	display: grid;
	gap: 3px;
	padding: 10px;
	position: absolute;
	right: 0;
	width: 280px;
}

.fc-chat-launcher__panel[hidden] {
	display: none;
}

.fc-chat-launcher__panel-header {
	padding: 10px 12px 12px;
}

.fc-chat-launcher__panel-title {
	color: var(--ft-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 4px;
}

.fc-chat-launcher__panel-subtitle {
	color: var(--ft-muted);
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
}

.fc-chat-launcher__row {
	align-items: center;
	background: none;
	border: 0;
	border-radius: 14px;
	color: var(--ft-ink);
	cursor: pointer;
	display: flex;
	font: inherit;
	gap: 12px;
	min-height: 64px;
	padding: 10px 12px;
	text-align: left;
	text-decoration: none;
	width: 100%;
}

.fc-chat-launcher__row:hover {
	background: var(--ft-silver);
}

.fc-chat-launcher__row:focus-visible {
	outline: 3px solid var(--ft-lime);
	outline-offset: -3px;
}

.fc-chat-launcher__row-icon {
	align-items: center;
	border-radius: 50%;
	color: var(--ft-white);
	display: flex;
	flex: none;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.fc-chat-launcher__row-icon svg {
	height: 22px;
	width: 22px;
}

.fc-chat-launcher__row-icon--telegram {
	background: #229ED9;
}

.fc-chat-launcher__row-icon--whatsapp {
	background: #25D366;
}

.fc-chat-launcher__row-icon--max {
	background: #6C5CE7;
}

.fc-chat-launcher__row-icon--chat {
	background: var(--ft-black);
	color: var(--ft-lime);
}

.fc-chat-launcher__row-text {
	flex: 1;
	min-width: 0;
}

.fc-chat-launcher__row-name {
	color: var(--ft-ink);
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 2px;
}

.fc-chat-launcher__row-description {
	color: var(--ft-muted);
	display: block;
	font-size: 12px;
	line-height: 1.3;
}

.fc-chat-launcher__row > svg {
	color: #A1A1AA;
	flex: none;
	height: 17px;
	width: 17px;
}

@media (prefers-reduced-motion: reduce) {
	.fc-chat-launcher__button {
		transition: none;
	}
}
