/* Import Google font - Poppins */
.wrapper{
  /* width: 450px; */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.wrapper header{
  display: flex;
  align-items: center;
  padding: 25px 30px 10px;
  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.45rem;
  font-weight: 500;
}
.calendar{
  padding: 20px;
}
.calendar ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}
.calendar .days{
  margin-bottom: 20px;
  padding: 0;
}
.calendar li{
  color: #333;
  width: calc(100% / 7);
  font-size: 1.07rem;
}
.calendar .weeks li{
  font-weight: 500;
  cursor: default;
}
.calendar .days li{
  z-index: 1;
  cursor: pointer;
  position: relative;
  /* margin-top: 30px; */
  background-color: #d9d9d9;
  border: 1px solid #fff;
  height: 30px;
  height: 40px;
    line-height: 40px;
}
.days li.inactive{
  color: #aaa;
  background-color: #f5f5f5;
}
.days li.active{
  color: #fff;
}
.days li::before{
  position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 38px;
    width: 62px;
    z-index: -1;
    /* border-radius: 50%; */
    transform: translate(-50%, -50%);
}
.days li.active::before{
  background: #00A11F;
}
.days li:not(.active):hover::before{
  background: #f2f2f2;
}
.weeks{
  padding: 0;
  margin-bottom: 8px;
}

.legend, .avaliable{
  display: flex;
}
.avaliable{
  margin-right: 24px;
}
.avaliable span{
  display: inline-block;
  background-color: #d9d9d9;
  width: 10px;
  height: 10px;
}

.selected span{
  display: inline-block;
  background-color: #00A11F;
  width: 10px;
  height: 10px;
}