
.wrapper{
  margin: 0;
  padding: 0;  
  width: 100%;
  background: #222222;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.wrapper header{
  display: flex;
  align-items: center;
  padding: 10px 20px 10px;
  justify-content: space-between;
}
header .centericons{
  display: flex;
}
header .centericons span{
  height: 38px;
  width: 38px;
  margin-top: 20px;
  cursor: pointer; 
  text-align: center;
  line-height: 38px;

  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 17px;
}
.centericons span:last-child{
  margin-right: -10px;
}
header .centericons span:hover{
  
}
header .centercurrent-date{
  font-size: 1.45rem;
  font-weight: 500;
}
.centerappcalendar{
  padding: 10px;
}
.centerappcalendar ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  margin:0;
  padding:0;
}
.centerappcalendar .centerappdays{
  margin-bottom: 20px;
}
.centerappcalendar li{  
  width: calc(100% / 7);
  font-size: 1.07rem;
}
.centerappcalendar .centerappweeks li{
  font-weight: 500;
  cursor: default;
  font-size: 18px;
}
.centerappcalendar .centerappdays li{
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  font-size: 13px;
}
.centerappdays li.inactive{
  color: #aaa;
  text-decoration-line: line-through;
  display: block !important;
}
.centerappdays li.active{
  color: #000;
}
.centerappdays li::before{
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.centerappdays li.active::before{
  
  background: #72D54A;
}
.centerdayhidden {
  display: none;
}