@charset "ISO-8859-1";

html {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.pageHead {
	height: 3.5em;
}

.pageBody {
	flex-grow: 1;
	display: flex;
	overflow: hidden;
}

.pageMenu {
	flex-basis: 18rem;
	flex-grow: 0;
	flex-shrink: 0;
	background: #555;
}

.pageMenu .schema {
	border: solid 1px black;
	border-top-left-radius: 0.375rem;
	border-top-right-radius: 0.375rem;
	border-bottom-left-radius: 0.375rem;
	border-bottom-right-radius: 0.375rem;
}

.pageMenu .schema > :first-child {
	border: 0;
	border-top-left-radius: inherit !important;
	border-top-right-radius: inherit !important;
}

.pageMenu .schema > :last-child {
	border-top: solid 1px black;
	border-bottom-left-radius: inherit !important;
	border-bottom-right-radius: inherit !important;
}

.pageMenu .schema-sub {
	margin-bottom: 0.5rem;
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.pageMenu .schema-sub:last-child {
	margin-bottom: 0 !important;
	border-bottom: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: inherit !important;
}

.pageMenu .schema-sub:last-of-type > * {
	border-bottom-left-radius: 0 !important;
}

.pageMain {
	flex-grow: 1;
	flex-shrink: 1;
	background: #EEE;
	overflow: auto; 
	display: flex;
	flex-direction: column;
}


.pageMain > .nav-tabs {
	align-items: stretch;
	padding-left: 0.4rem;
	border-bottom: #6c757d solid 1px;
}

.pageMain > .nav-tabs > .nav-item {
	border-color: #6c757d;
	border-style: solid;
	border-width: 1px 1px 0px 1px;
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
	color: #6c757d;
	margin-right: 0.4em;
	margin-top: 0.4em;
	display: flex;
	align-items: center;
}
.pageMain > .nav-tabs > .nav-item.active {
	background-color: #6c757d;
	color: #fff;
}

.pageMain > .nav-tabs > .nav-item > a {
	text-decoration: none;
	color: #6c757d;
	padding: 0.2rem 0.4rem;
}
.pageMain > .nav-tabs > .nav-item.active > a {
	color: #fff;
}

.pageMain > .nav-tabs > .nav-item > .close {
	height: 22px;
	border: #555 1px solid;
	border-radius: 4px;
	padding: 2px;
	line-height: 0;
	margin-right: 0.4em;
}
.pageMain > .nav-tabs > .nav-item.active > .close {
	border-color: white;
}
.pageMain > .nav-tabs > .nav-item > .close:hover {
	color: red;
}


.pageMain > div {
	overflow: auto; 
}


.pageCont {
	margin: 0.4em;
}

.pageCont.fix {
	margin: 0;
	width: 100%;
	height: 100%;
}

.pageFoot {
	height: 2.0em;
}

.pageDialog {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #00000055;
	z-index: 1055;
	pointer-events: auto;
}

.login-feedback .feedbackPanel {
	color: red;
	background-color: yellow;
	font-weight: bold;
}

.popover {
	max-width: 40em !important;
}

.card-header:not([style*="display: none;"]):last-child {
	
	border-bottom-style: none !important;
}

.modal-content {
	--bs-modal-bg: white;
	--bs-modal-border-width: 1px;
	--bs-modal-border-color: rgba(0,0,0,.2);
	--bs-modal-border-radius: .3rem;
}



.dropdown-item.off {
	background-color: transparent !important;
}

.dropdown-menu .submenu {
    display: none;
}

.dropdown-menu li:hover .submenu {
    display: block;
}

.dropdown-menu li {
    transition: background-color .2s ease;
}

.tr1 {
	transition-delay: 1s;
}



/*┌─────────────────────────────────────────────────────────────────────────────────────────────────────┐
┌─┘                                    AC: Inherit Radius facility                                      │
├───────────┬───────────────────────────────────────────────────────────────────────────────────────────┤
│  Idee:    │  Bei der Verschachtelung von Blöcken, insbes. in Inputgruppen muss wortwörtlich auf       │
│           │  die Rahmenbedingungen der umgebenden Blöcke geachtet werden. Je nach Ausrichtung         │
│           │  des Inhalts bedeutet das, dass die Radien untergeordenter Blöcke geerbt werden müssen,   │
│           │  was hier einfach auf einer "pro Ecke"- und "fürs erste/letzte Element"-Basis geschieht.  │
├───────────┼───────────────────────────────────────────────────────────────────────────────────────────┤
│  Format:  │  acir-nw0                                                                                 │
│           │  ^^^^      = "AC: Inherit Radius" declaration                                             │
│           │       ^^   = Affected corner: NW, NE, SE, SW                                              │
│           │         ^  = 0 ... first element, 9 ... last element                                    ┌─┘
└───────────┴─────────────────────────────────────────────────────────────────────────────────────────┘*/
.acir-nw0:first-child {  border-top-left-radius:     inherit !important;  }
.acir-nw9:last-child  {  border-top-left-radius:     inherit !important;  }
.acir-ne0:first-child {  border-top-right-radius:    inherit !important;  }
.acir-ne9:last-child  {  border-top-right-radius:    inherit !important;  }
.acir-se0:first-child {  border-bottom-right-radius: inherit !important;  }
.acir-se9:last-child  {  border-bottom-right-radius: inherit !important;  }
.acir-sw0:first-child {  border-bottom-left-radius:  inherit !important;  }
.acir-sw9:last-child  {  border-bottom-left-radius:  inherit !important;  }



.rsk {
	--margin: -0.5em;
	font-family: monospace;
	font-weight: bold;
	font-style: italic;
	letter-spacing: -0.064em;
	animation: rsk_margin 20s infinite;
}
.rsk > span {
	animation: rsk_color 20s infinite;
}
.rsk-white {
	--colorB: #0035a9;
	--colorR: #cf0821;
	--colorW: #aaaaaa;
	--color_: #ffffff;
}
.rsk-dark {
	--colorB: #0558ff;
	--colorR: #f60e2f;
	--colorW: #dddddd;
	--color_: #212529;
}
.rsk > span:nth-child(1) {
	--color0: var(--colorW);
	--color1: var(--color_);
	--trans0: 100%;
	--trans1: 0%;
}
.rsk > span:nth-child(2) {
	--color0: var(--colorR);
	--color1: var(--colorB);
	--trans0: 100%;
	--trans1: 100%;
}
.rsk > span:nth-child(3) {
	--color0: var(--colorB);
	--color1: var(--colorR);
	--trans0: 100%;
	--trans1: 100%;
}
.rsk > span:nth-child(4) {
	--color0: var(--color_);
	--color1: var(--colorW);
	--trans0: 0%;
	--trans1: 100%;
}
@keyframes rsk_color {
	  0% { color: var(--color0); opacity: var(--trans0); }
	 30% { color: var(--color0); opacity: var(--trans0); }
	 50% { color: var(--color1); opacity: var(--trans1); }
	 80% { color: var(--color1); opacity: var(--trans1); }
	100% { color: var(--color0); opacity: var(--trans0); }
}
@keyframes rsk_margin {
	  0% { margin-left: 0em; margin-right: var(--margin); }
	 30% { margin-left: 0em; margin-right: var(--margin); }
	 50% { margin-left: var(--margin); margin-right: 0em; }
	 80% { margin-left: var(--margin); margin-right: 0em; }
	100% { margin-left: 0em; margin-right: var(--margin); }
}

.sml {
	font-family: monospace;
	font-weight: bold;
	letter-spacing: -1.4em;
	font-size: 10em;
}
.sml > span {
	animation: sml_opa 8s infinite;
}
.sml > span:nth-child(1) {
	--smlopa0: 100%;
	--smlopa1: 0%;
}
.sml > span:nth-child(2) {
	--smlopa0: 0%;
	--smlopa1: 100%;
}
@keyframes sml_opa {
	  0% { opacity: var(--smlopa0); }
	 30% { opacity: var(--smlopa0); }
	 50% { opacity: var(--smlopa1); }
	 80% { opacity: var(--smlopa1); }
	100% { opacity: var(--smlopa0); }
}


.accell2 {
	background: #f06d06;
	position: relative;
	border: 5px solid blue;
	margin: 20px;
}
.accell2:after {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	background: red;
	z-index: -1;
}


.geo-gray {
	filter: grayscale(1);
	opacity: 50%;
}
.geo-hue120 {
	filter: hue-rotate(120deg);
}