/**
Helferlein für den Umstieg von bottom- auf top-margins
 */
@mixin reset-margin-bottom-for-direct-descendants() {
    > * {
        margin-bottom: 0 !important;
    }
}

@mixin set-margin-top-for-direct-descendant-siblings($margin) {
    > * + * {
        margin-top: $margin;
    }
}

* {
    box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", "HelveticaNeue", Arial, Helvetica, Geneva, sans-serif;
	font-size: 15px;
  /* 13px / 16px */
  line-height: 1.538461538;
  /* 20px / 13px */
  color: #161616;
  background: #d6d6d6;
}

.page {
  max-width: 2000px;
  margin: 0 auto;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
}
@supports (display: grid) {
  .page {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(12, 1fr);
  }
}

/************************/
/* Input */
/************************/
input {
	font-size: 15px;
	font-family: inherit;
	text-align: right;
	border:0;
	background-color: #A9E2F3;
}
input:disabled {
  background: #f2f2f2;
}

/*
.gesperrt {
	background-color: #f2f2f2;
}
*/
/************************/
/* Schalter */
/************************/
.buttonNew {
	display: inline-block;
	padding: 6px 14px;
	font-size: 11px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: #21838f;
	border: none;
	border-radius: 13px;
	box-shadow: 0 4px #999;
}
.buttonNew:hover {
	background-color: #fe1f08;
}
.buttonNew:active {
	background-color: #26fa03;
	box-shadow: 0 4px #666;
	transform: translateY(4px);
}

.buttonZoom {
	display: inline-block;
	padding: 6px 14px;
	font-size: 11px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: #21838f;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px #999;
}
.buttonZoom:hover {
	background-color: #fe1f08;
}
.buttonZoom:active {
	background-color: #26fa03;
	box-shadow: 0 4px #666;
	transform: translateY(4px);
}

buttonIndSoTi {
	display: inline-block;
	padding: 6px 12px;
	font-size: 10px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: #21838f;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px #999;
}
.buttonIndSoTi:hover {
	background-color: #fe1f08;
}
.buttonIndSoTi:active {
	background-color: #26fa03;
	box-shadow: 0 4px #666;
	transform: translateY(4px);
}

.btnClsMeldung {
	display: inline-block;
	padding: 10px 14px;
	font-size: 12px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #FFFFFF;
	background-color: #FF0000;
	border: none;
	border-radius: 13px;
	box-shadow: 0 4px #999;
}
.btnClsMeldung:hover {
	background-color: #fe1f08;
}
.btnClsMeldung:active {
	background-color: #26fa03;
	box-shadow: 0 4px #666;
	transform: translateY(4px);
}

/***********    --background-hover: #ffffff;   *************/
/* Kacheln */
/************************/
.gba-kachel {
  background-color: #fff;
  display: flex;
  margin-top: 24px;
  margin-right: 12px;
  margin-left: 12px;
}
.gba-kachel .padding-all-unit {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  max-width: 100%;
  width: 100%;
}
@supports (display: grid) {
  .gba-kachel {
    grid-column: auto/span 12;
    margin: 0 !important;
  }
}

/* Kachel Spalte 1 */
.gba-kachel_01 {
  flex: 1 0 auto;
}
@supports (display: grid) {
  .gba-kachel_01 {
    grid-column: auto/span 12;
    width: auto;
  }
  @media (min-width: 300px) {
    .gba-kachel_01 {
      grid-column: auto/span 3;
    }
  }
  @media (min-width: 400px) {
    .gba-kachel_01 {
      grid-column: auto/span 2;
    }
  }
}


.gba-kachel--m {
  flex: 1 0 auto;
  width: calc(100% - 24px);
}
@media (min-width: 300px) {
  .gba-kachel--m {
    flex: 1 0 auto;
    width: calc((100% - 48px) / 2);
  }
}
@media (min-width: 400px) {
  .gba-kachel--m {
    flex: 1 0 auto;
    width: calc(((100% - 48px) / 3) * 2);
  }
}
@supports (display: grid) {
  .gba-kachel--m {
    grid-column: auto/span 12;
    width: auto;
  }
  @media (min-width: 300px) {
    .gba-kachel--m {
      grid-column: auto/span 3;
    }
  }
  @media (min-width: 400px) {
    .gba-kachel--m {
      grid-column: auto/span 4;
    }
  }
}




.gba-kachel--l {
  flex: 1 0 auto;
  width: calc(100% - 24px);
}
@supports (display: grid) {
  .gba-kachel--l {
    grid-column: auto/span 12;
    width: auto;
  }
}


.gba-kachel__titel {
  font-size: 1.3076923077em;
  /* 17px / 13px */
  line-height: 1.235294118;
  /* 21px / 17px */
  border-top: 3px solid #21838f;
  color: #21838f;
  padding-top: 12px;
}

.gba-kachel__body {
  margin-top: 12px;
  flex: 1 0 auto;
}
.gba-kachel__body > * {
  margin-bottom: 0 !important;
}
.gba-kachel__body > * + * {
  margin-top: 8px;
}


.gba-kachel__footer {
  margin-top: 24px;
}

ul {
  padding: 0;
  list-style: none;
}
ul li {
  font-weight: bold;
  padding-left: 28px;
}

.padding-all-unit {
  padding: 24px;
}


/****************************/
/**        Tabelle         **/
/****************************/
table {
}

#kachelstamm td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachelbsv td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel00 td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel01 td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel02 td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel03 td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel04 td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel05 td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}

/***/
#kachel00BSV td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel01BSV td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel02BSV td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel03BSV td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel04BSV td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel05BSV td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}

/***/

#kachel00E td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachel01E td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
	text-align:right
}
#kachel02E td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
	text-align:right
}
#kachel03E td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
	text-align:right
}
#kachel04E td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
	text-align:right
}
#kachel05E td{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
	text-align:right
}
#kachelTP1 th{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachelTP2 th{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachelTP3 th{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachelTP4 th{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}
#kachelTP5 th{
	border-bottom:1px groove #D3D3D3;
	height:28px;
	font-family: Helvetica, sans-serif;
}

#UebSchr{
	background-color: #e7c157;
}

/* Select Felder */
.awfincrmcss { 
	width: 200px; 
}
.awKFWcss { 
	width: 60px; 
}

.tHead {
	font-size: 18px;	
	background-color: #ffff00;
	text-align: center;
	border:0;
}
label {
	font-size: 18px;
}
.uebKachel {
	font-size: 18px;	
}

.mussfeld {
	color: red;
}

.lbAbrUebL {
	font-size: 14px;
	color: #d0354c;
	text-align: right;
	width: 100px;
}
.lbAbrUebR {
	font-size: 14px;
	color: #0000FF;
	text-align: right;
	width: 100px;
}
#table_tp1 {
	font-size: 14px;
}

.textareaBericht {
	text-align: left;
	font-size: 1.0em;
	border-width: 0px;
}

#id_json_strng {
	visibility: hidden; 
}
#id_jsonTxt {
	visibility: hidden; 
}
#id_Ausgabe {
	visibility: hidden; 
}

/****************** Kachel Menue ****************/
.kachelMenue {
  position: fixed;
  top: 22%;
  left: 15px;
  z-index:;
}

.kachelMenue mnu {
  color: yellow;
  text-decoration: none;
}

@media (max-width: 1089px) {
.kachelMenue{
	display: none;
}}

.kachelMenue {
  padding: 0px;
  -webkit-transform: translate(-270px, 0);
  -moz-transform: translate(-270px, 0);
  -ms-transform: translate(-270px, 0);
  -o-transform: translate(-270px, 0);
  transform: translate(-270px, 0);
}
.kachelMenue li {
  color: #21838f;
  font-size: 14px;
  display: block;
  margin: 0px;
  background: #FFFFFF;
  width: 300px;
  text-align: right;
  padding: 6px;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.kachelMenue li a {
  color: #21838f;
  font-size: 14px;
  text-decoration: none;
}
.kachelMenue li:hover {
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background: #def5f7;
}

/* Text bei Hover */
.kachelMenue li:hover {
  color: #21838f;
}
.kachelMenue li:hover a {
  color: #21838f;
}

.kachelMenue li:hover i {
  color: #21838f;
  background: #FFFFFF;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.kachelMenue li i {
  margin-left: 10px;
  color: #21838f;
  background: #000000;
  padding: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 15px;
  background: #000000;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}


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

input:checked + .slider {
  background-color: #2ab934;
}

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

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  /* rechts Anschlag */
  transform: translateX(90px);    
}

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

details {
	transition: all .3s;
	border: thin solid;
	overflow: hidden;
	margin-bottom: 1em;
}

details[open] {
	transition: all 1s;
}

details > div {
	padding: .5em;
}

summary {
	position: relative;
	line-height: 300%;
	padding-left: 1em;
}

summary::after {
	content: "";
	position: absolute;
	color: green;
	font-size: 2em;
	font-weight: bold;
	right: 1em;
	top: .2em;
	transition: all 0.5s;
}


/* Rahmen Kopfzeile */
#rahmenlinks {
  border-left-width:0.05cm;
  border-left-style:solid;
  border-color:#21838f;
  padding-left:1cm;
  text-align:justify;
}

#rahmenoben {
  border-top-width:0.05cm;
  border-top-style:solid;
  border-color:#21838f;
  padding-top:0.1cm;
  text-align:justify;
}

#meldezeile {
	text-align: center;
	border: none;
	border-radius: 12px;
	padding: 12px 12px 12px 12px;
	color: #FFFFFF; 
	background-color: #ff7c00;
	display: inline-block;
	width: 90.5%;
	top: 3.7%
}

/********************/
/***** ToolTipp 
background: #ececec;
*****/
/********************/
.tooltip {
  position: relative;
  font-size: 1em;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #fffacd;
  color: #000;
  border-radius: 6px;
  padding: 12px 12px 12px 12px;
  position: absolute;
  z-index: 1;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltiptext.tooltipKopf {
	width: 800px;
	text-align: left;
	top: 200%;
	left: 2%;
	border: 2px solid #000;
}

.tooltiptext.tooltipKachel {
	width: 300px;
	text-align: center;
	border: 2px solid #000;
}

#ttb011, #ttb012, #ttb013, #ttb014, #ttb015 {
  position: absolute;
}

#ttb021, #ttb022, #ttb023, #ttb024, #ttb025 {
  position: absolute;
  left: 100%;
}


#ttb031, #ttb032, #ttb033, #ttb034, #ttb035 {
  position: absolute;
  right: 100%;
}

#ttb041, #ttb042, #ttb043, #ttb044, #ttb045 {
  position: absolute;
  right: 100%;
}

#ttb051, #ttb052, #ttb053, #ttb054, #ttb055 {
  position: absolute;
  right: 100%;
}

#ttb061, #ttb062, #ttb063, #ttb064, #ttb065 {
  position: absolute;
  right: 100%;
}

#ttb071, #ttb072, #ttb073, #ttb074, #ttb075 {
  position: absolute;
  right: 100%;
}

#ttb081, #ttb082, #ttb083, #ttb084, #ttb085 {
  position: absolute;
  right: 85%;
}
#ttb09 {
  position: absolute;
  right: -0.2%;
}
#ttb10 {
  position: absolute;
}
#ttb11 {
  position: absolute;
}

/********************/
.ic_plus {
  position: fixed;
  
}
.ic_cls {
  position: fixed;
  top: 61%
}

.ic_zk {
  position: fixed;
  left: 27.5%;
  top: 47.6%
}

.LeftAligned{
    text-align: left;
}
.RightAligned{
    text-align: right;
}
.CenterAligned{
    text-align: center;
}
