/* ************************************************************************** */
/* Modal Box                                                                  */
/* ************************************************************************** */
.modal-mess-window {
   position: fixed;
   overflow:scroll;
   background-color: rgba(000, 000, 000, 0.6);
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 999;
   opacity: 0;
   pointer-events: none;
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   transition: all 0.3s;
 }
.modal-mess-window:target {
   opacity:1;
   pointer-events: auto;
 }
.modal-mess-window>div {
   float: left;
   width: 600px;
   top: 20px;
   position: relative;
   margin:0;
   padding: 1rem;
   background: #2F2F2F;
   border-radius: 0 15px 15px 0;
 }
 .modal-delall {
   display: block;
   text-align: center;
   color: #aaa;
   font-size: 18px;
   text-decoration: none;
 }
.modal-mess-close{
   color: #aaa;
   line-height: 50px;
   font-size: 120%;
   position: absolute;
   right: 0;
   text-align:left;
   top: 0;
   width: 100px;
   text-decoration: none;
 }
.modal-mess-close:hover,
.modal-delall:hover { color: #fff; }

.modal-mess-content {
  text-align: left;
 }
.modal-mess-window h3 {
   font-weight: bold;
   color: #00A0FF;
   text-shadow: none;
   margin: 0 10px 20px 0;
}
/* *********************************************** */
/* Meldungsanzeige */
.imgDel {
	float: right;
}
.imgDel img { height: 25px;}

.mess-meldung, .mess-hinweis{
  padding: 10px;
  border-radius: 10px;
  width: 570px;
  margin: 0 0 20px 0;
}
.mess-meldung:hover, .mess-hinweis:hover{
  background: #5F5F5F;
}
.mess-meldung {
  position: relative;
  background: #3F3F3F;
}
.mess-hinweis {
  position: relative;
  background: #01491c;
}
.mess-meldung img#MessIcon, .mess-hinweis img#MessIcon {
  position:absolute;
  left: 5px;
  top: 0;
  height: 40px;
}
.text {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
}
.meldung p:after {
	content: "";
	display: block;
	clear: both;
}
.mess-meldung p , .mess-hinweis p{
  padding: 0 0 0 40px;
  margin: 0;
}

@media screen and (max-width: 640px) {
  .mess-meldung p , .mess-hinweis p{
    padding: 0 0 0 25px;
  }
  .mess-meldung img#MessIcon, .mess-hinweis img#MessIcon {
    left: 0;
    height:30px;
  }
  .modal-mess-window>div {
   width: 90%;
  }
  .mess-meldung , .mess-hinweis {
    width: 95%;
    min-height: 40px;
  }
  .imgDel img {
    height: 30px;
  }
}
/* *************************************/
/* Filter ModalBox  */

.FilterFormular td {
  padding: 2px;
  border: none;
  box-shadow: none;
  vertical-align: middle;
}
.FilterFormular th {
  padding-top: 5px;
  text-align: right;
  vertical-align: middle;
}
.FilterFormular select,
.FilterFormular input[type=date],
.FilterFormular input[type=number]  {
  padding: 0.5em;
  font-family: Verdana;
  margin: 5px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #2F2F2F;
  border-radius: 4px;
}
.FilterFormular select { width: 95%; }

.FilterFormular button {
  width: 90%;
  margin: 5px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #2F2F2F;
  padding: 5px;
  border-radius: 5px;
  color:#FFFFFF;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 1px  1px 1px #2F2F2F,
               1px -1px 1px #2F2F2F,
              -1px  1px 1px #2F2F2F,
              -1px -1px 1px #2F2F2F;
  box-shadow: 3px 3px 3px #7F7F7F;
  background-color: #4CAF50;
  cursor: pointer;
  margin-left: 3%;
}
