/* CSS Styles globaly available */

/* Enable custom header section in mstrWeb.aspx */
.mstrCustomHeaderDIV{
	display: block;
	-webkit-box-shadow: 0 0 5px black;
	-moz-box-shadow:	0 0 5px black;
	box-shadow:			0 0 5px black;
}

/* Style ceus header defined in GlobalMessageHeader.ascx*/
.ceusHeader{
	display: block;
	background: #fde073;
	color: black;
	text-align: center;
	overflow: hidden;
	/* Dont give header a min-height! This will cause the header to be display everytime */
	/*min-height:40px;*/
}

/* NOTE: (x) Only show header in case it is in mstrCustomHeaderDIV. This solves duplicate appearances e.g. in Logout and FastExport. */
#mstrCustomHeaderDIV .ceusHeader .ceusHeaderDIV{
	display: flex !important;
}

/* Style ceus header div dynamically created by Transform */
.ceusHeaderDIV{
	/* NOTE: hide header DIV by default. Make it only visible in case it is in #mstrCustomHeaderDIV! See (x) */
	display: none;
	height: auto;
	z-index: 6001;
	justify-content: center;
	min-height:40px;
	line-height: 1.5rem;
	font-size: medium;
	font-weight: bold;
	
	/* enable transformations for hiding */
	-webkit-transition: all 1s ease;  
	-moz-transition: all 1s ease;  
	-o-transition: all 1s ease;  
	-ms-transition: all 1s ease;  
	transition: all 1s ease;
}

/* Style ceus header table. Adjust some styling for fitting tables without some minimal spacing */
table.ceusHeaderTable{
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
table.ceusHeaderTable td {
	padding: 0px;
}
table.ceusHeaderTable td.ceusHeaderLeft{
	text-align: left;
}
table.ceusHeaderTable td.ceusHeaderCenter{
	text-align: center;
}
table.ceusHeaderTable td.ceusHeaderRight {
	text-align: right;
}

/* CENTER - Style ceus header DIV */
.ceusHeaderCenterDIV{
	height: auto;
	display: flex;
	justify-content: center;
	min-height:40px;
	padding: 0px 10px 0px 10px;
	line-height: 1.5rem;
	font-size: medium;
	font-weight: bold;
}
/* add via JS to ceusHeaderBar for transforming */
.transform-hide {
	height: 0px;
	min-height: 0px;
}
.ceusHeaderImage{
	align-self: center;
	min-width: 36px;
	width: 36px;
	height: 32px;
	background: url('images/attention.svg');
  	background-size: contain;
  	background-repeat: no-repeat;
}
.ceusHeaderMessage{
	margin-left: 10px;
	vertical-align: middle;
	display: flex;
	align-items: center;
	min-height:40px;
}
/* RIGHT - Style ceus header close button */
.ceusHeaderCloseBtn{
	line-height: 1.5rem;
	font-size: medium;
	font-weight: bold;
	align-self: center;
	cursor: pointer;
	padding-right: 14px;
}

/* Fixes for account arrow */
#mstrPathAccount{
	/* centering content */
	justify-content: center;
	display: flex;
}
.mstrAccountMenu {
	/* align */
	display: flex!important;
	align-self: flex-end;
	/* reset top */
	top: auto;
}