/* Anordnung / CSS Grid */

@supports (display: grid) {
	#seUniverse {
		display: grid;
		grid-template-rows: 70px auto;
		grid-template-columns: 305px auto;
		grid-gap: 0;
	}

	#seUniverse #seHeader {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	#seUniverse #seMainMenu {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	#seUniverse.visibleMenu #seMainMenu {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
	}
	#seUniverse.visibleMenu #seMainMenu .menuGroupName {
		font-weight: bold;
	}

	#seUniverse.visibleMenu #seMainMenu .menuGroupName:before{
		content: 'aa';
		color: transparent;
		width:20px;
		height:20px;
		background-image: url(/se_data/se_gfx/se4/icons/pfeil-menue-weiss-unten.svg);
		background-repeat: no-repeat;
		background-size: 50%;
		background-position: 4px;
	}

	#seUniverse #seBody {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
    max-width: 100vw;
	}

	#seUniverse.visibleMenu #seBody {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}



	#seHeader {
		display: grid;
		grid-template-rows: 85px auto;
	}

	#seHeader .seAccountname {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	#seHeader .seUseraccount {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}



	#seModule {
		display: grid;
		grid-template-rows: 100% auto;
		grid-template-columns: 85% auto;
		grid-gap: 0;
	}

	#seModuleContent {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	#seModuleContent.withMenu {
		max-width: calc(100vw - 200px);
		overflow-x: auto;
	}

	#seModuleActions {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}


}







#seMessage {
	margin: 10px;
	border: 1px solid #000;
	background-color: #ffc;
	color: #000;
	font-size: 0.9em;
}
#seMessage h3, #seMessage h5 {
	margin: 0px;
	padding: 5px;
}



/* seHeader - Graue Kopfzeile */


#seHeader {
	height: 65px;
	border-bottom: 5px solid var(--eo-headline-borderColor);
	background-color: #FFFFFF;
}

#seHeader .seAccountname {
	margin: 21px 0 0 50px;
}

#seHeader .seAccountname h1 {
	margin: 0;
}

#seHeader .seAccountname h1 a {
	color: var(--eo-dark-grey);
	text-decoration: none;
	text-transform: none;
	font-size: var(--eo-big-fontSize);
	font-weight: bold;
}

#seHeader .seUseraccount {
	margin: 19px 0 0 0;
	padding-right: 20px;
	text-align: right;
}

#seHeader .seUseraccount a {
	color: var(--eo-dark-grey);
	text-decoration: none;
}

#seHeader .header-icon {
	margin: 0 10px -10px 10px;
	width: 32px;
	height: 32px;
}





#seModuleFunctions {
	margin: 10px 0;
}

#seModuleFunctions ul,
#seModuleFunctions li {
	list-style: none;
	margin: 0;
	padding: 0;
}

#seModuleFunctions li {
	display: inline-block;
}

#seModuleFunctions a {
	display: inline-block;
	padding: 22px;
	font: Bold var(--eo-navigation-fontSize) Arial;
	color: var(--eo-dark-grey);
	text-decoration: none;
	text-transform: uppercase;
}

#seModuleFunctions a b {
	display: inline-block;
	border-bottom: 5px solid var(--eo-main-color);
}

/* untermenue container */
#seModuleFunctions {
	width: 100%;
	overflow-x: hidden; /* Verhindert horizontalen Scroll der Seite */
	/* Das UL Element */
	.horizontal-menu {
		display: flex;
		align-items: center;
		justify-content: normal;
		flex-wrap: nowrap; /* Verhindert Umbruch */
		overflow-x: auto; /* Ermöglicht horizontales Scrollen */
		-webkit-overflow-scrolling: touch; /* Smooth scrolling auf iOS */
		list-style: none;
		padding: 0;
		margin: 0;
		white-space: nowrap; /* Text in einer Zeile halten */

	}

	.horizontal-menu li {
		flex: 0 0 auto; /* Verhindert, dass Items gestreckt werden */
		flex-shrink: 1;
	}

	/* Bei Desktop Umbruch */
	@media (min-width: 768px) {
		.horizontal-menu {
			flex-wrap: wrap !important;
			overflow-x: inherit !important;
			white-space: wrap !important;
			justify-content: start;

		}
	}
}




/* seSupport */

#seSupport,
#seSupport h3 {
	color: #FFFFFF;
	font-size: var(--eo-body-fontSize);
}
#seSupport {
	padding: 30px 5px 10px 10px;
	font-size: var(--eo-body-fontSize);
}
#seMainMenuToggle #seSupport A {
	font-weight: normal;
	font-size: var(--eo-body-fontSize);
}
#seMainMenuToggle #seSupport A:hover {
	color: var(--eo-main-color);
	text-decoration: underline;
}




/* seMainMenu - linkes Vertikales Modul-Menu */

#seMainMenu {
	width: 305px;
	font-size: var(--eo-h2-fontSize);
	background-color: var(--eo-darker-grey);
}

#seMainMenu .inner {
	margin: 15px 0 0 15px;
}

#seMainMenu a {
	outline: 0;
	text-decoration: none;
	margin-right: 15px;

}

#seMainMenuOpener {
	display: inline-block;
	border: 1px solid #fff;
	text-align: center;
	font-size: 60%;
	padding: 4px;
}

#seMainMenuOpener span {
	color: #fff;
}


#seMainMenuOpenerImg {
	display: inline;
}

#seMainMenuCloseImg {
	display: none;
}

.visibleMenu #seMainMenuOpenerImg {
	display: none;
}

.visibleMenu #seMainMenuCloseImg {
	display: inline;
}

.visibleMenu #seMainMenu {
	min-height: 1000px;
}

.visibleMenu #seMainMenuToggle {
	display: block;
}

#seTravelLogo {
	margin: -6px 0 -10px 10px;
}

#seMainMenuSwitch {
	display: none;
	margin-left: 12px;
}

#seMainMenu h1 {
	display: inline-block;
	font-size: 1em;
	font-weight: normal;
	color: var(--eo-main-color);
	vertical-align: top;
}

#seMainMenuToggle {
	margin: 0 0 0 20px;
}

#seMainMenuLogo {
	vertical-align: top;
	margin-top: 10px;
	display: inline-block;
}

#seMainMenuToggle ul,
#seMainMenuToggle li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#seMainMenuToggle a,
#seMainMenuToggle a:hover {
	color: var(--eo-menu-link-color);
	text-decoration: none;
	text-transform: none;
	font-size: var(--eo-navigation-fontSize);
}

#seMainMenuToggle > ul > li > a {
	display: block;
	margin: 20px 0 10px 0;
}

#seMainMenuToggle > ul > li > ul > li {
	margin: 0 0 10px 40px;
}

#seUniverse.visibleMenu #seMainMenuSwitch {
	display: inline-block;
}


#seBody {
	background-color: var(--eo-light-grey);
}

a[href="#seToTop"] {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	width: 30px;
	height: 30px;
	border: 3px solid var(--eo-main-color);
	border-radius: 18px;
	background-image: url('/se_data/se_gfx/se4/icons/ic_arrow_down_24px-grey.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px;
	background-color: #FFFFFF;
	transform: rotate(180deg);

}

a[href="#seToTop"]:hover {
	background-image: url('/se_data/se_gfx/se4/icons/ic_arrow_down_24px-green.svg');
}













#seModule {
	margin: 0 25px;
}

#seModuleActions {

}

#seModuleActions table {
	margin-left: 40px;
}

#seModuleActions ul,
#seModuleActions li {
	list-style: none;
	margin: 0;
}

#seModuleActions a,
.cta-default,
.cta-small {
	display: inline-block;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #ccc; /* ie11 fallback */
	background-color: var(--eo-button-background);
	box-shadow: 0px 3px 6px #00000029;
	border: none;
	opacity: 1;
}

#seModuleActions a,
.cta-default {
	margin: 0 0 10px 0;
	padding: 17px 10px;
	border-radius: 10px;
}

.cta-default {
	width: auto;
}

.cta-small {
	padding: 4px 8px;
}

#seModuleActions a {
	width: 90%;
}

#seModuleActions a:hover,
a:hover.cta-default,
a:hover.cta-small {
	color: #FFF;
	background-color: var(--eo-button-hover-background);
}

/* buchungsformular buttonmenu right */
body #seModuleActions #saveButton {
	opacity: 0.2;
}
.saveButtonHighlight {
	opacity: 1 !important;
	background-color: var(--eo-main-color) !important;
}
#seModuleActions ul{
	position: sticky;
	top: 20px;
	padding-top: 20px;
}
/* --ende buchungsformular buttonmenu right */


a.cta-green{
	color: #FFF;
	background-color: var(--eo-main-color);
	margin: 0 0 10px 0;
	padding: 17px 25px;
	border-radius: 10px;
	display:inline-block;
	box-shadow: 0px 3px 6px #00000029;
}
a:hover.cta-green {
	background-color: var(--eo-main-color-lightened);
}



#seFooter {
}

/* Development Classes */
img.missing {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: red;
}

.whitebox {
	background-color: #FFFFFF;
}





/* -------------------------------------- */

.switch {
	position: relative;
	display: inline-block;
	width: 38px;
	height: 22px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 30px;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 2px;
	bottom: 3px;
	border-radius: 50%;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: var(--eo-main-color);
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(16px);
	-ms-transform: translateX(16px);
	transform: translateX(16px);
}



/*
 * NEUE GUI WIDGETS
 */

#statisticCounterWidget,
#ausspielungskanaeleWidget,
#integrationWidget,
#datencheckWidget,
#systemnachrichtenWidget ,
#buchungenWidget {
	padding: 24px;
	border: 1px solid var(--eo-middle-grey);
	background-color: #FFFFFF;
}

#statisticCounterWidget h2,
#buchungenWidget h2,
#ausspielungskanaeleWidget h2 {
	color: var(--eo-dark-grey);
}

#buchungenWidget h2 a,
#statisticCounterWidget h2 a {
	text-transform: uppercase;
	font-size: var(--eo-h4-fontSize);
	font-weight: normal;
}
#statisticCounterWidget h2 a:hover {
	color: var(--eo-main-color);
}

#statisticCounterWidget {
	margin-top: 30px;
}

#statisticCounterWidget q{
	color: var(--eo-main-color);
}

#statisticCounterWidget .statMonth{
	color: var(--eo-main-color);
}

#statisticCounterWidget .statsDetail {
	display: inline-block;
	width: 19%;
	color: var(--eo-dark-grey);
	text-align: center;
}

#statisticCounterWidget output {
	font-size: 85px;
	font-weight: bold;
}




#buchungenWidget ,
#integrationWidget ,
#datencheckWidget ,
#systemnachrichtenWidget ,
#ausspielungskanaeleWidget {
	color: var(--eo-dark-grey);
	margin-top: 30px;
}

#ausspielungskanaeleWidget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#ausspielungskanaeleWidget li {
	float: left;
	width: 20%;
    margin: 0 50px 0 0;
    padding: 0;
}

.WrapAusspielungsk {
	float:left;
	height:200px;
	margin-top: 15px;
}
.WrapAusspielungsk a
{
	display:inline-block;
	margin-top: 5px;
}
#ausspielungskanaeleWidget li img {
    float: left;
	width: 100px;
	height: auto;
    margin-right: 15px;
	margin-bottom: 15px;
}

#ausspielungskanaeleWidget li .imgWrapAusspielungsk {
	min-height: 95px;
	overflow: hidden;
}


#vertriebskanaeleWidget {
	margin-top: 30px;
}

#vertriebskanaeleWidget h2 {
	color: var(--eo-dark-grey);
	padding-left: 24px;
}

#vertriebskanaeleWidget .vkbox {
	display: grid;
	grid-template-rows: 50px auto;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

#vertriebskanaeleWidget .vkbox div {
	grid-column: 1fr;
	grid-row: auto;
	padding: 17px 0;
	margin-top: -1px;
	margin-left: -1px;
	border-top: 1px solid var(--eo-dark-grey);
	border-right: 1px solid var(--eo-dark-grey);
	border-bottom: 1px solid var(--eo-dark-grey);
	border-left: 1px solid var(--eo-dark-grey);
	overflow: hidden;
	text-align: center;
	font-weight: bold;
	color: var(--eo-dark-grey);
}

#vertriebskanaeleWidget .vkbox div.goodnews,
#vertriebskanaeleWidget .vkbox div.badnews {
	grid-column: auto / span 2;
	border-width: 0px;
}

#vertriebskanaeleWidget .goodnews,
#vertriebskanaeleWidget .badnews {
	margin-top: 10px;
	color: var(--eo-dark-grey);
	text-decoration: none;
	text-align: center;
}

#vertriebskanaeleWidget .goodnews a,
#vertriebskanaeleWidget .badnews a {
	text-transform: uppercase;
	font-weight: bold;
	padding: 17px 25px;
}



#buchungenWidget table {
    width: 100%;
}

#buchungenWidget th {
    text-align: left;
}

#buchungenWidget td:last-child {
	visibility: hidden;
	color: var(--eo-main-color);
	text-align: center;
}

#buchungenWidget tr[data-href] {
	cursor: pointer;
}

#buchungenWidget tr:hover[data-href] td {
	background-color: var(--eo-light-grey);
}

#buchungenWidget tr:hover[data-href] td:last-child {
	visibility: visible;
}

#buchungenWidget .gebucht {
    color: var(--eo-main-color);
}



#integrationWidget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#integrationWidget li {
	float: left;
	margin: 15px;
	min-width: 250px;
}

#integrationWidget li.active {
	padding-left: 30px;
	min-width: 220px;
	background-image: url(/se_data/se_gfx/se4/icons/ic_check_24px-green.svg);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 20px;
}

#integrationWidget li.inactive {
	padding-left: 30px;
	min-width: 220px;
	background-image: url(/se_data/se_gfx/se4/icons/ic_clear_red_24px.svg);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 16px;
}

#integrationWidget li i {
	font-style: normal;
	font-weight: normal;
}

#integrationWidget a {
	text-transform: none;
	font-weight: bold;
}
#integrationWidget a:hover {
	color: var(--eo-main-color);
}

#integrationWidget a:hover::after {
	content: ' >';
	color: var(--eo-main-color);
}



#datencheckWidget .floatbox {
	float: left;
	width: calc(33% - 20px);
	margin: 0 10px;
}

#datencheckWidget .floatbox img {
	width: 80%;
}

#datencheckWidget .floatbox div {
	padding-left: 30px;
	margin: 0 0 10px 0;
	min-height: 25px;
	background-repeat: no-repeat;
}

#datencheckWidget a {
	text-transform: none;
	font-weight: bold;
}

#datencheckWidget a:hover {
	color: var(--eo-main-color);
}

#datencheckWidget a:hover::after {
	content: ' >';
	color: var(--eo-main-color);
}

#datencheckWidget .floatbox div.ok {
	background-position: left top 0px;
	background-image: url(/se_data/se_gfx/se4/icons/ic_check_24px-green.svg);
	background-size: 20px;
}

#datencheckWidget .floatbox div.nok {
	background-position: left top 2px;
	background-image: url(/se_data/se_gfx/se4/icons/ic_clear_red_24px.svg);
	background-size: 16px;
}

#systemnachrichtenWidget a {
	text-decoration: none;
}

#systemnachrichtenWidget h2 {
	margin-bottom: 20px;
}
#systemnachrichtenWidget h4 {
	font-size: 16px;
	margin-bottom: 10px;
}

#systemnachrichtenWidget p {
	margin: 0;
}

#systemnachrichtenWidget span {
	text-decoration: underline;
}

#systemnachrichtenWidget ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
}

#systemnachrichtenWidget li {
	flex: auto;
	max-width: 25%;
	padding: 0;
	margin: 0 20px 20px 0;
	width: calc(25% - 20px);
}

#datencheckWidget .datenhinweis-info {
	clear: both;
	padding-top: 1em;
}

a[href="#systemnachrichtenWidget"] {
	border-radius: 15px;
	width: 30px;
	height: 30px;
	margin: 0 20px -8px 0;
	background-color: var(--eo-main-color);
	display: none;
}

/*******************************************************************/

.inOutInfo {
	font-size:10px;
}

.inOutDiv {
	display:none;
	width:100%;
	border-top:1px solid var(--eo-dark-grey);
	border-bottom:1px solid var(--eo-dark-grey);
	float:left;
	margin:-1px 0 0 0;
}

.inOutButtonAll,
.inOutButton {
	margin: 15px 0 0 0;
	padding: 5px 6px 4px 30px;
	border-bottom: 1px solid var(--eo-light-grey);
	cursor: pointer;
	background-position: center left 6px;
	background-repeat: no-repeat;
	background-color: transparent;
	color: var(--eo-dark-grey);
}

.inOutButtonAll strong,
.inOutButton strong {
	font-weight: normal;
}

.inOutButtonAll span,
.inOutButton span {
	font-weight: bold;
}

.inOutButtonAll:hover,
.inOutButton:hover {
	color: var(--eo-darker-grey);
	background-color: var(--eo-light-grey);
}

.in {
	background-image: url(/se_data/se_gfx/se4/icons/ic_arrow_down_24px-green.svg);
	background-size: 15px;
}

.out {
	background-image: url(/se_data/se_gfx/se4/icons/ic_arrow_right_24px-green.svg);
	background-size: 12px;
}

.inOutDiv {
	background-color: #FFFFFF;
}


.shader {
	float: left;
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 25px;
	background: linear-gradient(to top, #FFFFFF, transparent);
}


/**************************************
 * Lightbox
 **************************************/

#seSimpleLightbox_modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #FFFFFF;
	opacity: 0.5;
}


#seSimpleLightbox_container {
	display: none;
	position: fixed;
	top: 10vh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: 60vw;
	height: 60vh;
	padding: 40px 20px;
	box-shadow: 0 0 10px var(--eo-middle-grey);
	background-color: #FFFFFF;
	overflow-y: auto;
}

#seSimpleLightbox_close {
	display: none;
	position: absolute;
	top: 5px;
	right: 5px;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	background-image: url(/se_data/se_gfx/se4/icons/ic_clear_weiss_24px.svg);
	background-position: center center;
	background-size: 12px;
	background-repeat: no-repeat;
	background-color: var(--eo-baustelle-color);
	box-shadow: 0 0 5px var(--eo-middle-grey);
}

/* System Messages */

#seSimpleLightbox_container .seSystemMessages {
	grid-template-columns: 40% 60%;
	grid-gap: 10px;
}

#seSimpleLightbox_container .seSystemMessagesImages img {
	width: 100%;
}





/* Belegungsplan */


#belegungsplanLegende {
	margin: 20px 0;
	padding: 0;
	font-size: 14px;
}

#belegungsplanLegende li {
	float: left;
	list-style: none;
	height: 14px;
	padding: 4px 20px;
	margin: 0 20px 0 0;
}

#belegungsplanLegende li:first-child {
	font-weight: bold;
}

#aktualisierungsInfo {
	margin-left: 30px;
	font-weight: bold;
	color: var(--eo-dark-grey);
}

#aktualisierungsInfo .big {
	font-size: var(--eo-big-fontSize);
	margin-top: 5px;
}

#manuelleFreimeldung_liste {
	background-color: #FFF;
}

#manuelleFreimeldung_liste td[onclick].se_cell:hover {
	background-color: var(--eo-main-color-lightened);
}

#manuelleFreimeldung_liste td a {
	text-decoration: none;
}

#manuelleFreimeldung_liste .se_cell,
.travel-freimeldung_zimmerauswahl .se_cell {
	border-width: 0;
}




/* Travel Preise */
.travel-preise_zimmerliste {
	background-color: #FFFFFF;
}

.travel-preise_zimmerliste .se_cell {
	border-width: 0;
}

.travel-preise_saisonzeit {
	background-color: #FFFFFF;
}

.travel-preise_saisonzeit .se_cell {
	border-width: 0;
	background-color: var(--eo-middle-grey);
}

.travel-preise_personenpreise {
	background-color: #FFFFFF;
}

.travel-preise_personenpreise th {
	padding: 4px 15px;
	background-color: var(--eo-light-grey);
	border-bottom: 1px solid var(--eo-middle-grey);
}

.travel-preise_personenpreise td {
	padding: 4px 10px;
	text-align: center;
	border-bottom: 1px solid var(--eo-light-grey);
}

.travel-preise_alreadyincluded td {
	padding: 8px;
}

.travel-preise_zuschlaege th {
	text-align: left;
	font-weight: normal;
}

.travel-preise_zuschlaege td,
.travel-preise_zuschlaege th {
	padding: 6px;
	border-bottom: 1px solid var(--eo-middle-grey);
}

.travel-preise_zuschlaege .empty {
	border-width: 0;
}


/* Stammdaten */
.betriebsform {
	width: 1300px;
	color: var(--eo-dark-grey);
	grid-row-gap: 12px;
	grid-column-gap: 52px;
	font-weight: bold;
}

.neue-buchungen {
	grid-column-gap: 38px;
}

.fieldsetNoBorders fieldset.widget.boxed {
	border-width: 0;
}

.poweredBy {
	text-align: right;
	font-size: 14px;
	color: var(--eo-main-color-greyed);
	padding-top:15px;
	padding-bottom:15px;
}
.poweredBy a {
	color: var(--eo-main-color);
	text-decoration: none;
}

.loginPoweredBy {
	background-color: #fff;
	color: var(--eo-dark-grey);
	padding: 15px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: auto;
	text-align: left;
}

.loginPoweredBy a {
	color: var(--eo-main-color);
	text-decoration: none;
	font-weight: bold;
}

.flex-container{
	display: flex;
	background-color: white;
	border:1px solid;
	border-color:gainsboro;
	width:100%;
	height:350px;
}

.container-icons{
	display:flex;
	margin-top:5px;
	padding:5px;
	font-family: Arial;
	font-size: 11px;
	color: #444;
}


/*Mobil*/
@media(max-width: 1730px){
	#systemnachrichtenWidget li {
		flex: auto;
		max-width: 35%;
		padding: 0;
		margin: 0 20px 20px 0;
		width: 35%;
	}
}
@media (max-width: 768px) {
	#seModuleContent.withMenu {
		max-width: calc(100vw);
		overflow-x: auto;
	}

	.flex-container{
		display:block;
	}

	#seModule {
		display: block;
	}

	.Timetable4 .Toolbar {
		height: auto;
	}

	.hideMobile {
		display:none;
	}
	#systemnachrichtenWidget li {
		flex: auto;
		max-width: 100%;
		padding: 0;
		margin: 0 20px 20px 0;
		width: 100%;
	}

	#seSimpleLightbox_container .seSystemMessages {
		grid-template-columns: 100%;
		grid-gap: 10px;
	}
	#seSimpleLightbox_container{
		width: 80%;

	}
}


@media print {
	#seModuleFunctions {
		display:none !important;
	}
	#seModule {
		display:none !important;
	}
}

#quicklinks{
	display:none;
	position:sticky;
	z-index:1;
	top:0;
	background-color:var(--eo-light-grey);
}


.quicklinksHeader a{
	word-spacing:6em;
	text-decoration:none !important;
	margin-left:20px;
}