﻿.khanedev-sticky-buttons {
	--khanedev-right: 24px;
	--khanedev-top: 50%;
	position: fixed;
	top: var(--khanedev-top);
	right: var(--khanedev-right);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transform: translateY(-50%);
}

.khanedev-sticky-buttons__item {
	--khanedev-bg: #ffffff;
	--khanedev-color: #111827;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	text-decoration: none;
}

.khanedev-sticky-buttons__label {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--khanedev-bg);
	color: var(--khanedev-color);
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
	opacity: 0;
	transform: translateX(8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.khanedev-sticky-buttons__thumb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	/*border-radius: 999px;*/
	/*background: var(--khanedev-bg);*/
	/*color: var(--khanedev-color);*/
	/*box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);*/
	overflow: hidden;
	flex-shrink: 0;
}

.khanedev-sticky-buttons__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.khanedev-sticky-buttons__thumb span {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.khanedev-sticky-buttons__item:hover .khanedev-sticky-buttons__label,
.khanedev-sticky-buttons__item:focus-visible .khanedev-sticky-buttons__label {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

@media (max-width: 767px) {
	.khanedev-sticky-buttons {
		right: 12px;
		gap: 10px;
	}

	.khanedev-sticky-buttons__thumb {
		width: 48px;
		height: 48px;
	}

	.khanedev-sticky-buttons__label {
		min-height: 38px;
		padding: 0 12px;
		font-size: 13px;
	}
}
