.floating-contact-wrap {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	max-width: 450px;
	z-index: 999999;
	pointer-events: none;
}

/* BOX LEFT */
.floating-contact-box {
	position: absolute;
	left: 12px;
	bottom: 70px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	pointer-events: auto;
}

/* ITEM */
.fc-item {
	display: flex;
	align-items: center;
	text-decoration: none !important;
}

/* ICON */
.fc-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	border: 3px solid var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Phone */
.fc-phone .fc-icon {
	background: #a8d233;
	color: var(--color-black);
	font-size: 24px;
}

/* Zalo */
.fc-zalo .fc-icon {
	background: var(--color-white);
	color: #1877f2;
	font-size: 18px;
	font-weight: 700;
}

/* TEXT */
.fc-text {
	height: 40px;
	padding: 0 20px;
	margin-left: 10px;
	background: #ff1f0f;
	color: var(--color-white);
	border-radius: 999px;
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;

	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* BOTTOM BAR */
.floating-bottom-bar {
	width: 100%;
	height: 58px;
	background: var(--color-white);
	color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none !important;
	font-size: 18px;
	font-weight: 600;
	padding: 0 15px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
	pointer-events: auto;
}

/* HOVER */
.fc-item:hover .fc-text {
	opacity: .9;
}

/* TABLET */
@media(max-width: 768px) {
	.floating-contact-box {
		left: 10px;
		bottom: 62px;
		gap: 10px;
	}

	.fc-icon {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

	.fc-phone .fc-icon {
		font-size: 20px;
	}

	.fc-zalo .fc-icon {
		font-size: 15px;
	}

	.fc-text {
		height: 40px;
		padding: 0 14px;
		font-size: 15px;
	}

	.floating-bottom-bar {
		height: 50px;
		font-size: 14px;
		padding: 0 10px;
	}
}