/* *************************************************************************** */
/* Syle */
/* *************************************************************************** */

/* ******Info Boxen ******** */
.tooltip {
  /* allgemein */
  position: relative;
  display: inline-block;
  cursor: help;
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
  /*Farbe*/
  background: #00A0FF;
  color: #fff;
  font-family: Times New Roman;
  font-size: 14px;
  text-align: center;
  /* border */
  border: none;
  border-radius: 9px;
}
.tooltip .tooltiptext {
  /* allgemein */
  visibility: hidden;
  width: 320px;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: 50%;
  margin-left: -20px;
  padding: 10px;
  /* color */
  font-family: Verdana;
  font-size: 90%;
  background-color: #00A0FF;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  border: 1px solid #000;
  text-shadow: 1px  1px 1px #5F5F5F,
               1px -1px 1px #5F5F5F,
              -1px  1px 1px #5F5F5F,
              -1px -1px 1px #5F5F5F;
  /* opacity: 0.9; */
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
@media screen and (max-width: 640px) {
  .tooltip .tooltiptext {
    width: 250px;
   }
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15px;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Fehlerausgaben */
.fehlerausgabe, .hinweis {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  display: block;
  margin-bottom: 5px;
  color: #fff;
}
/* verschiedene Hintergruende */
.fehlerausgabe { background: #FF7F00; }
.hinweis { background: #5BC11A; }

/* *************************************************************************** */
/* Home */

.begruess_kalender{
  padding: 0;
  /*margin: 2% 1% 0 1%; */
  width: 55%;
  border-radius:10px;
}
@media screen and (max-width: 640px) {
  .begruess_kalender{ width: 100%; }
}
.image {
  margin-right: 15px;
  height: 40px;
   -moz-opacity: 0.65;
   opacity: 0.65;
}
.begruess {
  z-index: 0;
  position:absolute;
}
.count {
  z-index: 1;
  position: absolute;
  top: 25px; /* pos von oben */
  left: 25px; /* posit von links */
  width: 24px;
  height: 24px;
  border-radius: 12px;

  margin: 0;
  padding: 0;
  display: flex;
	align-items: center;
	justify-content: center;

  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #FF5F00;
}
@media screen and (max-width: 640px) {
  .image {
    margin-right: 10px;
    height: 35px;
  }
  .count {
    top: 20px; /* pos von oben */
    left: 20px; /* posit von links */
    width: 20px;
    height: 20px;
  }
}
