.cpfbfe-wrap {
	display: flex;
}

.cpfbfe-button {
	--cpfbfe-angle: 35deg;
	--cpfbfe-duration: 450ms;
	--cpfbfe-easing: ease-out;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden;
	isolation: isolate;
	max-width: 100%;
	padding: 14px 28px;
	border: 2px solid #111827;
	border-radius: 6px;
	background: transparent;
	color: #111827;
	font: inherit;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: color var(--cpfbfe-duration) var(--cpfbfe-easing), border-color var(--cpfbfe-duration) var(--cpfbfe-easing), box-shadow var(--cpfbfe-duration) var(--cpfbfe-easing);
	-webkit-tap-highlight-color: transparent;
}

.cpfbfe-button:hover,
.cpfbfe-button:focus,
.cpfbfe-button:focus-visible {
	color: inherit;
	text-decoration: none;
}

.cpfbfe-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.cpfbfe-content {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	pointer-events: none;
}

.cpfbfe-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.cpfbfe-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.cpfbfe-fill {
	position: absolute;
	z-index: 1;
	inset: -1px;
	display: block;
	background-color: #111827;
	pointer-events: none;
	transition: transform var(--cpfbfe-duration) var(--cpfbfe-easing);
	will-change: transform;
}

.cpfbfe-direction-right .cpfbfe-fill {
	transform: scaleX(0);
	transform-origin: left center;
}

.cpfbfe-direction-left .cpfbfe-fill {
	transform: scaleX(0);
	transform-origin: right center;
}

.cpfbfe-direction-down .cpfbfe-fill {
	transform: scaleY(0);
	transform-origin: center top;
}

.cpfbfe-direction-up .cpfbfe-fill {
	transform: scaleY(0);
	transform-origin: center bottom;
}

.cpfbfe-direction-angle .cpfbfe-fill {
	inset: -150%;
	transform: rotate(var(--cpfbfe-angle)) scaleX(0);
	transform-origin: left center;
}

.cpfbfe-button:hover .cpfbfe-fill,
.cpfbfe-button:focus-visible .cpfbfe-fill {
	transform: scale(1);
}

.cpfbfe-direction-angle:hover .cpfbfe-fill,
.cpfbfe-direction-angle:focus-visible .cpfbfe-fill {
	transform: rotate(var(--cpfbfe-angle)) scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
	.cpfbfe-button,
	.cpfbfe-fill {
		transition-duration: 0.01ms !important;
	}
}
