.vcfb {
	--vcfb-bottom: 24px;
	--vcfb-side: 24px;
	--vcfb-size: 52px;
	--vcfb-gap: 14px;
	--vcfb-z: 99999;
	--vcfb-launcher: #d72d64;
	--vcfb-launcher-hover: #bd2454;
	--vcfb-border-width: 3px;
	--vcfb-border-color: #087cde;
	position: fixed;
	bottom: calc(var(--vcfb-bottom) + env(safe-area-inset-bottom, 0px));
	z-index: var(--vcfb-z);
	display: block;
	width: var(--vcfb-size);
	height: var(--vcfb-size);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1;
}

.vcfb,
.vcfb:focus,
.vcfb:focus-within,
.vcfb__items,
.vcfb__items:focus,
.vcfb__items:focus-within {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.vcfb--right {
	right: calc(var(--vcfb-side) + env(safe-area-inset-right, 0px));
}

.vcfb--left {
	left: calc(var(--vcfb-side) + env(safe-area-inset-left, 0px));
}

.vcfb__items {
	position: absolute;
	left: 50%;
	bottom: calc(100% + var(--vcfb-gap));
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--vcfb-gap);
	margin: 0;
	padding: 0;
	pointer-events: none;
	transform: translateX(-50%);
}

.vcfb__action,
.vcfb__launcher {
	box-sizing: border-box;
	width: var(--vcfb-size);
	height: var(--vcfb-size);
	min-width: var(--vcfb-size);
	min-height: var(--vcfb-size);
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	outline: 0 !important;
	box-shadow: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.vcfb__action,
.vcfb__action:hover,
.vcfb__action:focus,
.vcfb__action:active {
	border: 0 !important;
}

.vcfb__action {
	position: relative;
	background: var(--vcfb-action-color);
	opacity: 0;
	transform: translateY(18px) scale(0.78);
	transition:
		opacity 180ms ease,
		transform 240ms cubic-bezier(0.2, 0.75, 0.25, 1.2);
	transition-delay: 0ms;
}

.vcfb.is-open .vcfb__items {
	pointer-events: auto;
}

.vcfb.is-open .vcfb__action {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: calc((var(--vcfb-index) + 1) * 35ms);
}

.vcfb__action:hover {
	transform: translateY(-2px) scale(1.04);
}

.vcfb__action:focus-visible,
.vcfb__launcher:focus-visible {
	outline: 3px solid #1677d2 !important;
	outline-offset: 3px;
}

.vcfb__action:focus:not(:focus-visible),
.vcfb__launcher:focus:not(:focus-visible) {
	outline: 0 !important;
}

.vcfb.vcfb--pointer-input .vcfb__action:focus,
.vcfb.vcfb--pointer-input .vcfb__launcher:focus {
	outline: 0 !important;
}

.vcfb__icon,
.vcfb__launcher-open,
.vcfb__launcher-close {
	width: 52%;
	height: 52%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: calc(var(--vcfb-size) * 0.26);
	font-weight: 700;
}

.vcfb__icon img,
.vcfb__launcher-open img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.vcfb__launcher {
	position: relative;
	color: #fff;
	background: var(--vcfb-launcher);
	border: var(--vcfb-border-width) solid var(--vcfb-border-color) !important;
	transition: transform 200ms ease, background-color 180ms ease;
}

.vcfb__launcher:hover {
	background: var(--vcfb-launcher-hover);
	transform: scale(1.04);
}

.vcfb__launcher svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.vcfb__launcher-close {
	position: absolute;
	inset: 24%;
	width: auto;
	height: auto;
	opacity: 0;
	transform: rotate(-90deg) scale(0.5);
	transition: opacity 150ms ease, transform 220ms ease;
}

.vcfb__launcher-open {
	opacity: 1;
	transform: rotate(0) scale(1);
	transition: opacity 150ms ease, transform 220ms ease;
}

.vcfb.is-open .vcfb__launcher-open {
	opacity: 0;
	transform: rotate(90deg) scale(0.5);
}

.vcfb.is-open .vcfb__launcher-close {
	opacity: 1;
	transform: rotate(0) scale(1);
}

.vcfb__tooltip {
	position: absolute;
	top: 50%;
	padding: 7px 10px;
	border-radius: 6px;
	background: #20252d;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) translateX(4px);
	transition: opacity 150ms ease, transform 150ms ease;
}

.vcfb--right .vcfb__tooltip {
	right: calc(100% + 11px);
}

.vcfb--left .vcfb__tooltip {
	left: calc(100% + 11px);
	transform: translateY(-50%) translateX(-4px);
}

.vcfb__action:hover .vcfb__tooltip,
.vcfb__action:focus-visible .vcfb__tooltip {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

@media (max-width: 782px) {
	.vcfb--hide-mobile {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vcfb__action,
	.vcfb__launcher,
	.vcfb__launcher-open,
	.vcfb__launcher-close,
	.vcfb__tooltip {
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
	}
}
