/**
* @file
* @deprecated As of version 1.44.0, together with the sap.ui.unified.SplitContainer
*/
/* ============================================== */
/* CSS for control sap.ui.unified/SplitContainer  */
/* Base theme                                     */
/* ============================================== */

/* The animation duration must be in ms so it returns the correct integer value when used with parseInt */
@_sap_ui_unified_SplitContainer_AnimationDuration: 500ms;

.sapUiUfdSpltCont {
	overflow: hidden;
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
}

.sapUiUfdSpltContAnim .sapUiUfdSpltContCanvas,
.sapUiUfdSpltContAnim .sapUiUfdSpltContPane {
	transition: height @_sap_ui_unified_SplitContainer_AnimationDuration ease 0ms,
				width @_sap_ui_unified_SplitContainer_AnimationDuration ease 0ms,
				left @_sap_ui_unified_SplitContainer_AnimationDuration ease 0ms,
				top @_sap_ui_unified_SplitContainer_AnimationDuration ease 0ms;
}

.sapUiUfdSpltContPane {
	background-color: var(--sapGroup_ContentBackground);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.sapUiUfdSpltContPane.sapUiUfdSplitContSecondClosed > div {
	display: none;
}

.sapUiUfdSpltContCanvas {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.sapUiUfdSpltContCntnt {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.sapUiUfdSpltContPad {
	padding: 10px;
}

.sapUiUfdSpltContH .sapUiUfdSpltContPane {
	border-right: 1px solid var(--sapGroup_ContentBorderColor);
	bottom: 0;
}

.sapUiUfdSpltContV .sapUiUfdSpltContPane {
	border-bottom: 1px solid var(--sapGroup_ContentBorderColor);
	right: 0;
}