/* ================================================ */
/* CSS for control sap.ui.integration.cards/Footer  */
/* Base theme                                       */
/* ================================================ */

.sapFCardFooter {
	display: flex;
	justify-content: end;
	gap: 0.5rem;

	.sapFCardFooterShowMoreButton {
		max-width: 100%;
	}
}

.sapFCardFooterBorderLine {
	border-top: 1px solid var(--sapPageFooter_BorderColor);
}

.sapUiIntCard.sapUiIntCardIsOverflowing .sapFCardFooter {
	position: relative;
}

.sapUiIntCard.sapUiIntCardIsOverflowing:not(.sapUiIntCardDialogCard) .sapFCardFooter::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: -3rem;
	height: 3rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--sapShellColor) 100%);
	pointer-events: none;
}