.floating-contact-menu {
	position: fixed;
	top: 50%;
	right: max(0px, calc((100vw - 1920px) / 2));
	transform: translateY(-50%);
	z-index: 99;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.floating-contact-item {
	display: flex;
	align-items: center;
	text-decoration: none;
	overflow: hidden;
	background-color: var(--color-green);
	border-right: none;
	border-radius: 4px 0 0 4px;
	margin-left: auto;
	transition: background-color 0.3s ease;
}

.floating-contact-item:hover {
	background-color: var(--color-green);
}

.floating-contact-label {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	opacity: 0;
	font-family: var(--font-family-bold);
	font-size: 14px;
	line-height: 1;
	color: var(--color-white);
	padding: 0;
	transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		opacity 0.3s ease 0.05s,
		padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-contact-item:hover .floating-contact-label {
	max-width: 250px;
	opacity: 1;
	padding: 0 14px 0 16px;
}

.floating-contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	color: var(--color-white);
}

.floating-contact-icon svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 980px) {
	.floating-contact-menu {
		display: none;
	}
}