#busyDiv {
	display: none;
	z-index: 100;
	position: absolute;
	width: 150px;
	height: 180px;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

#successDiv {
	z-index: 12;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

/* //=== MODAL DLG ===// */
#hinweisDiv {
	display: none;
	background-color: rgba(0, 0, 0, 0.5); /* Dunkler Hintergrund für besseren Kontrast */
	position: fixed; /* Fixiert im sichtbaren Bereich */
	top: 0; /* Startet oben */
	left: 0; /* Startet links */
	width: 100%; /* Deckt die gesamte Breite ab */
	height: 100%; /* Deckt die gesamte Höhe ab */
	backdrop-filter: blur(5px); /* Hintergrund wird geblurred */
	z-index: 100; /* Hintergrund unterhalb der Box */
}

#hinweisBox {
	z-index: 101; /* Höher als #hinweisDiv */
	position: fixed; /* Fixiert im sichtbaren Bereich */
	width: 400px;
	height: auto;
	padding: 20px;
	border: 10px inset red;
	background-color: white;
	box-shadow: 0px 0px 50px black;
	top: 50%; /* Vertikale Zentrierung */
	left: 50%; /* Horizontale Zentrierung */
	transform: translate(-50%, -50%); /* Exakte Zentrierung */
}

#hinweisTitel {
	border-bottom: 1px red solid;
	margin-bottom: 10px;
}

#hinweisBox#data {
	display: none;
	width: 100%;
}

#okBtn {
	float: right;
	width: auto;
}

#cancelBtn {
	display: none;
	float: left;
	width: 100px;
}

/* Mandanten SELECT */
#mandantenDIV {
	position: relative;
	cursor: pointer;
	z-index: 10;
	border: 4px solid var(--c400);
	box-shadow: 5px 5px 15px 5px var(--c900);
}

#mandantenDIV:hover {
	border: 4px solid var(--c200);
}

#mandWahl {
	border: 0;
	background: tan;
	font-size: 1.4rem;
}

/* 	=== */

#abmelden {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#abmelden:hover {
	opacity: .5;
}

#hilfe {
	position: absolute;
	left: 200px;
	top: 10px;
	width: 60px;
	height: 60px;
}

.hilfeBild:hover {
	opacity: .5;
}

#seitenName {
	text-align: center;
	font-size: 2rem;
	height: 60px;
	color: black;
	margin: auto;
	background: white;
	padding-left: 2rem;
	padding-right: 2rem;
	opacity: .7;
}

#fuss {
	background: #d7d5d5;
	/* 		position: fixed; */
	bottom: 0px;
	width: 100%;
}

#fuss>p {
	font-size: 2vw;
}

//=== Multi-Select List ===//
#auswahlgruppe {
	margin: 2rem;
}

.auswahlfeld {
	position: relative;
	display: flex;
	border: 1px solid var(--c400);
	width: 300px;
	border-radius: 5px;
}

.auswahlname.medium {
	width: 5rem;
}

.auswahlname.small {
	width: 3rem;
}

.auswahlname.large {
	width: 8rem;
}

.auswahlname {
	padding: 5px;
	color: #555;
	background-color: var(--c400);
	cursor: pointer;
	text-transform: capitalize;
	--pfeil: '▸';
}

.auswahlname.selected {
	--pfeil: '▾';
}

.auswahlname:hover {
	background-color: var(--c600);
}

.auswahlname::before {
	font-size: 1rem;
	content: var(--pfeil);
	width: 40px;
	height: 20px;
	margin-right: 10px;
}

.auswahltext {
	padding: 5px;
	font-size: .8rem;
}

.auswahl-items.selected {
	display: block;
}

.auswahl-items {
	position: absolute;
	display: none;
	background-color: var(--c400);
	border: 1px solid var(--c400);
	border-radius: 3px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
	margin-top: -1px;
	padding: 5px;
}


.auswZeile {
	cursor: pointer;
	background-color: var(--c400);
}

.auswZeile:hover {
	background-color: var(--c200);
}

//===//


/* //=== SCHALTER ===// */
div.pp_umschalter {
	font-family: sans-serif;
	font-weight: 600;
	display: flex;
	user-select: none;
	width: var(--schalterBreit);
	height: var(--schalterHoch);
	border: 2px solid blue;
	border-radius: 10px;
	background: linear-gradient(hsl(120deg, 80%, 80%), hsl(150deg, 80%, 80%));
	position: relative;
	align-items: center;
}

.knopf {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	transition: all 300ms;
	width: calc(var(--schalterBreit) / 2);
	height: var(--schalterHoch);
	left: 0%;
	color: white;
	text-align: center;
	border-radius: 10px;
	cursor: pointer;
	background: linear-gradient(90deg,
			rgba(2, 0, 36, 1) 0%,
			rgba(9, 104, 121, 1) 35%,
			rgba(0, 212, 255, 1) 100%);
}

.knopfname {
	color: white;
}

.knopf.checked {
	left: 50%;
}

.pp_umschalter.links,
.pp_umschalter.rechts {
	color: black;
}

.rahmen {
	display: flex;
	justify-content: space-around;
	width: 100%;
}


/*=== TO TOP  ===*/
#toTopBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: red;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
}

#toTopBtn:hover {
	background-color: #555;
}