/**
 * Keep UABB / Beaver Builder modals vertically centered on resize.
 * UABB sets inline top/transform values that can jump to the top of the viewport.
 */
html:not(.fl-builder-edit) .uabb-modal.uabb-show:not(.uabb-modal-scroll) {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	top: 0 !important;
	bottom: 0 !important;
	height: 100vh !important;
	height: 100dvh !important;
	transform: none !important;
}

html:not(.fl-builder-edit) .uabb-modal.uabb-show:not(.uabb-modal-scroll) > .uabb-content {
	flex: 0 1 auto;
	max-height: calc(100vh - 40px);
	max-height: calc(100dvh - 40px);
}
