/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.krank{
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.krank header{
  display: flex;
  align-items: center;
  padding: 10px 15px 0px;
  margin-top: 55px;
  justify-content: space-between;
}
header .icons{
  display: flex;
}
header .icons span{
  height: 38px;
  width: 38px;
  margin: 0 1px;
  cursor: pointer;
  color: #878787;
  text-align: center;
  line-height: 38px;
  font-size: 1.9rem;
  user-select: none;
  border-radius: 50%;
}
.icons span:last-child{
  margin-right: -10px;
}
header .icons span:hover{
  background: #f2f2f2;
}
header .current-date{
  font-size: 1.2rem;
  font-weight: 500;
}
.calendarKrank{
  padding: 10px;
}
.calendarKrank ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}
.calendarKrank .days{
  margin-bottom: 10px;
}
.calendarKrank li{
  color: #333;
  width: calc(100% / 7);
  font-size: 0.9rem;
}
.calendarKrank .weeks li{
  font-weight: 500;
  cursor: default;
}
.calendarKrank .days li{
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
}
.days li.inactive{
  color: #aaa;
}
.days li.urlaub{
  color: #fff;
}
.days li.krank{
  color: #fff;
}
.days li.krankK{
  color: #fff;
}
.days li.urlaubS{
  color: #fff;
}
.days li::before{
  position: absolute;
  margin-top: 1px;
  margin-left: 0.5px;
  content: "";
  left: 50%;
  top: 50%;
  height: 28px;
  width: 28px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.days li.arbeitstag::before{
  background: #00000085;
}
.days li.urlaub::before{
  background: #00308F;
}
.days li.krank::before{
  background: #D71111;
}
.days li.krankK::before{
  background: magenta;
}
.days li.urlaubS::before{
  background: #a2a923fc;
}
.days li.nothing:hover::before{
  background: #f2f2f2;
}
.table_UK th{
    border-bottom: 1px;
    border-bottom-width: 1px;
    position: sticky;
    top: 0;
    z-index: 1;
    background: white;    
}
.table_UK tr{
    border-bottom: 1px;
    border-bottom-style: solid;
    border-color: #dee2e6;
}
.table_UK th{
    text-align: center;
}
.table_UK td{
    text-align: center;
}