.k2-kai-launcher {
	--k2-kai-launcher-bg: #e30513;
	--k2-kai-launcher-collapsed-width: 48px;
	--k2-kai-launcher-expanded-width: calc(var(--k2-kai-launcher-collapsed-width) + var(--k2-kai-launcher-label-width));
	--k2-kai-launcher-height: 48px;
	--k2-kai-launcher-label-width: 160px;
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	width: min(var(--k2-kai-launcher-expanded-width), calc(100vw - 32px));
	height: var(--k2-kai-launcher-height);
	overflow: hidden;
	border-radius: 999px;
	background-color: var(--k2-kai-launcher-bg, #e30513);
	box-shadow: none;
	box-sizing: border-box;
	text-decoration: none;
}

.k2-kai-launcher.k2-kai-launcher--inline {
	position: static;
	right: auto;
	bottom: auto;
	z-index: 1;
	order: 2;
	margin-left: 20px;
	flex-shrink: 0;
}

.k2-kai-launcher.k2-kai-launcher--fixed-top {
	position: fixed;
	bottom: auto;
	z-index: 1601;
}

.k2-kai-launcher:focus-visible {
	outline: 3px solid rgba(227, 5, 19, 0.2);
	outline-offset: 3px;
}

.k2-kai-launcher__label {
	flex: 0 0 var(--k2-kai-launcher-label-width);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 0 0 16px;
	box-sizing: border-box;
	color: #ffffff;
	font-family: "K2 Halvar Mittelschrift", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
	text-align: left;
	white-space: nowrap;
	opacity: 1;
	transform: translateX(0);
	pointer-events: none;
}

.k2-kai-launcher__label--measure {
	position: fixed;
	top: -9999px;
	left: -9999px;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	opacity: 1;
	visibility: hidden;
	transform: none;
	pointer-events: none;
}

.k2-kai-launcher__icon-wrap {
	flex: 0 0 var(--k2-kai-launcher-collapsed-width);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--k2-kai-launcher-collapsed-width);
	height: var(--k2-kai-launcher-height);
}

.k2-kai-launcher__icon {
	display: block;
	width: 28px;
	height: 28px;
}

.k2-kai-launcher-tooltip {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 10000;
	width: min(287px, calc(100vw - 32px));
	padding: 20px 22px;
	box-sizing: border-box;
	border-radius: 8px;
	background-color: #ffffff;
	box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.25);
	color: #626974;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px) scale(0.98);
	transform-origin: top right;
	transition:
		opacity 0.24s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.24s ease;
}

.k2-kai-launcher-tooltip[data-placement="top"] {
	transform-origin: bottom right;
}

.k2-kai-launcher-tooltip.k2-kai-launcher-tooltip--visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.k2-kai-launcher-tooltip__body {
	margin: 0;
	font-family: "K2 Halvar Mittelschrift", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
}

.k2-kai-launcher-tooltip__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: 18px;
	padding: 0 18px;
	border-radius: 999px;
	background-color: var(--k2-kai-launcher-bg, #e30513);
	box-sizing: border-box;
	color: #ffffff;
	font-family: "K2 Halvar Mittelschrift", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	text-decoration: none;
}

.k2-kai-launcher-tooltip__button:hover {
	box-shadow: none;
	transform: none;
}

.k2-kai-launcher-tooltip__button:focus-visible {
	outline: 3px solid rgba(227, 5, 19, 0.2);
	outline-offset: 3px;
}

@media (max-width: 782px) {
	.k2-kai-launcher {
		right: 16px;
		bottom: 16px;
	}
}

@media (min-width: 1024px) {
	.k2-kai-launcher.k2-kai-launcher--inline {
		align-self: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.k2-kai-launcher-tooltip {
		transition: none;
	}
}
