
/* Malert (Popup) */
#malert_aussen{display:none;position:fixed;top:0px;left:0px;height:100%;z-index:999;width:100%;background-color:#000000;opacity:0.5;}
#malert_innen{left: 50%;transform: translateX(-50%);-webkit-transform: translate(-50%, 0%);display:none;position:fixed;top:70px;max-width:95%;width:1600px;z-index:1000;background-color:#fff;border-radius:5px;box-shadow: 3px 3px 5px #000000;}
#malert_head{background-color:#ccc;padding:10px;}
#malert_headline{color:#000;}
#malert_x{text-decoration:none;color:#fff;float:right;cursor:pointer;font-size:15px;background-color:#222;padding:5 10 5 10;border-radius:5px;font-weight:bold;}
#malert_inhalt{height:100%;display:block;color:#000;background-color:#fff;font-size:15px;padding:10px;}

#malert_innen {
  display:none;
  -ms-overflow-style: none;  /* IE 10+ */
  overflow: -moz-scrollbars-none;  /* Firefox */
}
#malert_innen::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
  width: 0px;  /* remove scrollbar space */
  background: transparent;  /* optional: just make scrollbar invisible */
}
#malert_inhalt
{
  /*border:1px solid red;*/
  min-height:200px;
  max-height:calc( 100vh - 100px ); /* oben 60, unten 20 */
  overflow-y: auto;
}
