/* =================================== */
/* CSS for control sap.m/MessageToast  */
/* Base theme                          */
/* =================================== */

.sapMMessageToast {
	box-sizing: border-box;
	position: absolute;
	max-width: 15rem;
	word-wrap: break-word;
	text-align: center;
	text-decoration: none;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: pre-line;
	font-size: var(--sapFontSize);
	font-family: var(--sapFontFamily);
	font-weight: normal;
	padding: 1rem;
	background: var(--sapIndicationColor_9_Background);
	color: var(--sapContent_ContrastTextColor);
	box-shadow: var(--sapContent_Lite_Shadow);
	border-radius: var(--sapElement_BorderCornerRadius);
}

.sapMMessageToast.sapMFocus {
	outline-width: var(--sapContent_FocusWidth);
	outline-style: var(--sapContent_FocusStyle);
	outline-color: var(--sapContent_FocusColor);
	outline-offset: ~"calc(var(--sapContent_FocusWidth) * -1)";
}