.buchly-funktionen-tab button {
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 0;
	font: inherit;
	color: inherit;
}

.buchly-funktionen-tab.is-active {
	opacity: 1;
}

.buchly-funktionen-tab.is-active .buchly-funktionen-tab-label {
	color: var(--billmore, #f97316);
}

.buchly-funktionen-tab.is-active .buchly-funktionen-tab-icon {
	background-color: var(--billmore, #f97316);
}

.buchly-funktionen-panel:not(.hidden) {
	animation: buchly-funktionen-fade 0.25s ease-out;
}

@keyframes buchly-funktionen-fade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
