/*
 *= require_tree .
 *= require_self
*/


/* _mf_ Farbdefinitionen mit CSS-Variablen */
:root {
/*  --color-funken-bg-light:  #1e90ff;*/
  --color-funken-bg-light:  #f2f2f2;
  --color-funken-bg-middle: #e8e8e8;
  --color-funken-bg-dark:   #2c2c2e;
  --color-funken-blue:      #0572b7;
  --color-funken-grey:      #3d4045;
}


/* Alert Allgemeine Einstellungen ----------------------------------------------------------------------- */
.alert-error {
	background-color: lightcoral;
	color: black;
}

.alert-success {
	background-color: green;
	color: white;
}

.alert-warning {
	background-color: yellow;
	color: var(--color-funken-bg-dark) !important;
}

.alert {
    font-size: 16px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.close {
	font-size: 35px;
}

/* Vollbild-Hinweis bei deaktiviertem JavaScript (siehe <noscript> im Layout) ------ */
.noscript-vollbild {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-funken-bg-light);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.noscript-box {
	background-color: white;
	border: 2px solid var(--color-funken-blue);
	border-radius: 10px;
	padding: 30px 40px;
	max-width: 640px;
	text-align: center;
	font-size: 16px;
	color: var(--color-funken-bg-dark);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.noscript-box h2 {
	color: var(--color-funken-blue);
	margin-top: 0;
}

.noscript-weiter {
	display: inline-block;
	margin-top: 15px;
	padding: 8px 20px;
	background-color: var(--color-funken-blue);
	color: white !important;
	border-radius: 10px;
	text-decoration: none;
}

.noscript-weiter:hover {
	background-color: var(--color-funken-grey);
	color: white !important;
}

/* Allgemeine Einstellungen ----------------------------------------------------------------------- */
.headerTitle {
    font-size: 20px;
    line-height: 25px;
}

.header {
	height: 115px;
	background-repeat: no-repeat; 
	background-position: center;
	background-color: var(--color-funken-bg-light);
	border-bottom: 5px solid var(--color-funken-bg-dark);
}

.overflow {
    overflow: hidden;
}

.footer-copyright{
    border-top: 5px solid var(--color-funken-bg-dark);
    margin-bottom:1px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    background-size: 500px;
    height: 350px;
    margin-left: -15px;
    margin-right: -15px;
}

.container-fluid {
	position: relative;
	top: -5px;
	background: linear-gradient(to bottom, var(--color-funken-blue), hsl(0, 0%, 100%));
	border: none;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
	background: transparent;
}

.strong {
	font-weight: bold;
	font-size: 13px; 
	color: black;
}

.bold {
    font-weight: bold;
}

.title {
	text-shadow: 1px 2px grey;
}

.languageIcon {
    position: relative;
    top: -30px;
    width: 50px;
    left: 15px;
    margin-right: 15px;
    background: transparent;
}



.languageIcon:hover {
    border: 2px solid var(--color-funken-blue);
    border-radius: 2px;
    box-shadow: inset 5px 5px 5px rgba(var(--color-funken-blue), 0.075), 15px 5px 5px rgba(var(--color-funken-blue), 0.5);
    width: 60px;
}

.activLanguage {
    position: relative;
    top: -30px;
    left: 15px;
    margin-right: 15px;
    background: transparent;
    border: 2px solid var(--color-funken-bg-dark);
    border-radius: 2px;
    box-shadow: inset 5px 5px 5px rgba(var(--color-funken-bg-dark), 0.075), 15px 5px 5px rgba(var(--color-funken-bg-dark), 0.5);
    width: 60px;
}

.activLanguage:hover {
    border: 2px solid var(--color-funken-blue);
    border-radius: 2px;
    box-shadow: inset 5px 5px 5px rgba(var(--color-funken-blue), 0.075), 15px 5px 5px rgba(var(--color-funken-blue), 0.5);
    width: 60px;
}

.activeIcon {
    border: 2px solid var(--color-funken-bg-dark);
    border-radius: 2px;
    box-shadow: inset 5px 5px 5px rgba(var(--color-funken-bg-dark), 0.075), 15px 5px 5px rgba(var(--color-funken-bg-dark), 0.5);
    width: 60px;
}
.addTop {
    top: 10px;
}

/* Tabs ----------------------------------------------------------------------- */
#tabs {
	width: 100%;
	overflow: hidden;
	box-sizing: inherit;
	background-color: transparent;
}

#tabitemAnleitung, 
#tabitemNotizen,
#tabitemFav, 
#tabitemParam {
	display: inline-block;
	text-align: center;
	cursor: pointer;
	padding: 7px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

#tabitemAnleitung a,
#tabitemNotizen a,
#tabitemFav a,
#tabitemParam a {
	text-decoration: none;
	color: silver;
	font-weight: bold;
	font-size: 13px;
}

#tabitemAnleitung:hover,
#tabitemNotizen:hover,
#tabitemFav:hover,
#tabitemParam:hover {
	background-color: var(--color-funken-bg-light) !important;
	text-decoration: none;
}

#tabitemAnleitung a,
#tabitemNotizen a,
#tabitemFav a,
#tabitemParam a {
	color: black;
}

#tabitemAnleitung:hover a,
#tabitemNotizen:hover a,
#tabitemFav:hover a,
#tabitemParam:hover a {
	color: var(--color-funken-blue);
	text-shadow: none;
}

.active {
	background: white !important;
}

.inactiveTab {
	background-color: transparent !important;
	text-shadow: 1px 1px grey;
}


/* Tooltip ----------------------------------------------------------------------- */
.tooltipTxt,
.tooltipTxt3,
.tooltipTxt2 {
	position: absolute;
	border-radius: 6px;
	width: 200px;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	padding: 5px;
	visibility: hidden;
	color: #fff;
	text-align: center;
	opacity: 0;
	transition: opacity 1s;
	z-index: 1;
}

.cssTextAuslegung:hover .tooltipTxt { 
	visibility: visible;
	width: 140px;
	background-color: rgba(255,255,255,0.85);
	border: 2px solid black;
	color: var(--color-funken-blue);
	opacity: 1;
	margin-left: 1px;
	font-size: 15px;
	font-weight: bold;
	text-shadow: none;
	box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.075), 3px 3px 8px rgba(1, 1, 1, 0.5);
}

.cssTextAuslegung:hover .tooltipTxt3 {
    position: relative;
    visibility: visible;
    width: 140px;
    background-color: rgba(255,255,255,0.85);
    border: 2px solid black;
    top: -50px;
    color: var(--color-funken-blue);
    opacity: 1;
    margin-left: 25px;
    font-size: 15px;
    font-weight: bold;
    text-shadow: none;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.075), 3px 3px 8px rgba(1, 1, 1, 0.5);
}

.cssTextAuslegung:hover .tooltipTxt2 {
    visibility: visible;
    width: 150px;
    background-color: rgba(255,255,255,0.85);
    border: 2px solid black;
    color: var(--color-funken-blue);
    opacity: 1;
    margin-left: 10px;
    font-size: 15px;
    font-weight: bold;
    text-shadow: none;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.075), 3px 3px 8px rgba(1, 1, 1, 0.5);
}

/* ----------------------------------------------------------- */
.modal,
.modal-dialog,
.modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: 0 0 0 0 transparent !important;
    top: 25%;
}

#lockpage {
    display: none;
}

.modal-body {
    background: transparent;
}

.loader {
    background: transparent;
    box-sizing: border-box;
    position: absolute;
    left: 40%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border-top: 15px inset var(--color-funken-bg-dark);
    border-bottom: 15px inset var(--color-funken-blue);
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }
    100% {
        -webkit-transform: rotate(360deg);
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Allgemeine Überschrift definieren ------------------------------------------- */
.headerFamily {
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    line-height: 25px;
    text-shadow: 0.2px 0.2px var(--color-funken-bg-dark);
}

select {
    text-align-last: center;
}




/* FORMULAR ------------------------------------------------------------------- */
.breite,
input.breite  {
    position: relative;
    width: 100% !important;
}
