.zc-floating-buttons {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 24px;
	z-index: 999;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	pointer-events: none;
}

.zc-floating-buttons__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
    gap: 10px;
	min-width: 220px;
	padding: 20px 34px;
	border-radius: 999px;
	border-style: solid;
	border-width: 1px;
	text-decoration: none;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	pointer-events: auto;
}
.zc-floating-buttons__icon {
	display: inline-flex;
	line-height: 1;
	font-size: 18px;
	flex: 0 0 auto;
}

.zc-floating-buttons__icon i,
.zc-floating-buttons__icon svg {
	display: block;
}

.zc-floating-buttons__text {
	display: inline-block;
}

.zc-floating-buttons__button:has(.zc-floating-buttons__icon):not(:has(.zc-floating-buttons__text)) {
	min-width: auto;
}

.zc-floating-buttons__button--icon-only {
	min-width: auto;
}

.zc-floating-buttons__button:hover {
	transform: translateY(-1px);
}

.zc-floating-buttons__button--primary {
	background: #ececec;
	color: #111111;
	border-color: transparent;
}

.zc-floating-buttons__button--secondary {
	background: #f7f7f7;
	color: #111111;
	border-color: transparent;
}

@media (min-width: 1025px) {
	.zc-floating-buttons--hide-desktop {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.zc-floating-buttons--hide-tablet {
		display: none;
	}
}

@media (max-width: 767px) {
	.zc-floating-buttons--hide-mobile {
		display: none;
	}

	.zc-floating-buttons {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.zc-floating-buttons__button {
		min-width: 0;
		/* flex: 1 1 calc(50% - 5px); */
	}
}