.khfcta-wrap {
	position: fixed;
	display: flex;
	align-items: stretch;
	pointer-events: none;
	box-sizing: border-box;
}

.khfcta-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-sizing: border-box;
	width: var(--khfcta-width);
	min-height: var(--khfcta-height);
	padding: 8px 16px;
	border-radius: var(--khfcta-radius);
	background: linear-gradient(135deg, var(--khfcta-color-1), var(--khfcta-color-2));
	box-shadow: 0 8px 24px rgba(25, 44, 72, 0.25);
	color: #fff !important;
	font-family: inherit;
	font-size: var(--khfcta-font-size);
	font-weight: 600;
	line-height: 1.25;
	text-align: left;
	text-decoration: none !important;
	pointer-events: auto;
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.khfcta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 11px 29px rgba(25, 44, 72, 0.32);
	color: #fff !important;
	filter: saturate(1.08);
}

.khfcta-button:active {
	transform: translateY(0);
}

.khfcta-button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.95);
	outline-offset: 3px;
}

.khfcta-button__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.khfcta-button__icon svg {
	display: block;
	width: var(--khfcta-icon-size);
	height: var(--khfcta-icon-size);
}

.khfcta-button__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.khfcta-button__text,
.khfcta-button__comment {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.khfcta-button__text {
	white-space: nowrap;
}

.khfcta-button__comment {
	margin-top: 2px;
	font-size: 0.72em;
	font-weight: 400;
	line-height: 1.15;
	opacity: 0.88;
	white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
	.khfcta-button {
		transition: none;
	}
}

