.kb-buttons-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--global-kb-gap-xs, .5rem);
}

.kb-button {
	z-index: 1;
	position: relative;
	overflow: hidden;
	display: inline-flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.kb-button.wp-block-button__link {
	width: auto;
	height: auto;
}

.wp-block-kadence-advancedbtn .kb-button:not(.specificity):not(.extra-specificity) {
	text-decoration: none;
}

.kb-button::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	background: rgba(0, 0, 0, 0);
}

.kb-button:hover::before, .kb-button:focus::before {
	opacity: 1;
}