/* Event **********************************************************/
.news h2.h1 {
  font-weight: 400;
}
.newscalendarTable table {
  background-color: rgba(255, 255, 255, 0.75);
}
.newscalendarTable th {
  border-top: 0;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  background-color: #6c757d;
  color: #fff;
  text-align: center;
}
.newscalendarTable td {
  text-align: center;
  border-top: 0;
  border-bottom: 1px solid #dee2e6;
}
.newscalendarTable tr td.day6 {
  background-color: #f9f9fa;
}
.newscalendarTable tr td.day7 {
  background-color: #eeeff0;
}
.newscalendarTable tr td.today {
  text-decoration: underline;
}
.newscalendarTable .pager {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  align-items: center;
}
.newscalendarTable .pager .previous a, .newscalendarTable .pager .next a {
  color: #fff;
  font-family: FontAwesome;
  background: none;
  border: 0;
}
.newscalendarTable .hasevents {
  transition: all ease 0.3s;
  border-bottom: 1px solid #dee2e6;
  position: relative;
  border-bottom: 4px solid #454545;
}
.newscalendarTable .hasevents:hover {
  background-color: white;
}
.newscalendarTable .hasevents:hover a {
  color: #000;
}
.newscalendarTable .hasevents .termin {
  display: block;
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 4px;
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.35);
  transition: all ease 0.5s;
  position: absolute;
  top: auto;
  left: auto;
  z-index: 14;
  display: none;
  text-align: left;
  font-size: 90%;
}
.newscalendarTable .hasevents .termin a {
  color: #666;
  transition: all ease 0.5s;
  padding: 5px;
  display: block;
  border-bottom: 1px solid #efefef;
}
.newscalendarTable .hasevents .termin a:last-of-type {
  border-bottom: 0;
}
.newscalendarTable .hasevents .termin a:hover {
  color: #454545;
}
.newscalendarTable .hasevents:hover .termin {
  display: block;
}
