.wrapper{
    background: #fff;
    border-radius: 10px;
}
.wrapper .cal-header{
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 3px 15px;
}
.cal-header .icons{
    display: flex;
}
.cal-header .icons span{
    /* height: 38px; */
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    user-select: none;
    border-radius: 50%;
    position: relative;
    top: -8px !important;
}
.icons span:last-child{
    margin-right: -10px;
}
.cal-header .icons span:hover{
    background: #f2f2f2;
}
.cal-header .current-date{
    font-size: 14px;
    font-weight: 500;
}
.calendar{
}
.calendar ul{
    display: flex;
    flex-wrap: wrap;
    margin-left: 0px !important;
    list-style: none;
    text-align: center;
    padding-left: 0px;
    margin-top: 10px;
}
.calendar .days{
    /* margin-bottom: 20px; */
}
.calendar li{
    color: #333;
    width: calc(100% / 7);
    font-size: 14px;
}
.calendar .weeks li{
    font-weight: 500;
    cursor: default;
}
.calendar .days li{
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
}
.days li.inactive{
    color: #aaa;
}
.days li.active{
    color: #fff;
}
.days li::before{
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 30px;
    width: 30px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.days li.active::before{
    background: #000000;
}
.days li:not(.active):hover::before{
    background: #f2f2f2;
}
#months {
    top: -9px;
    width: 15px;
    position: relative;
    left: -21%;
    border: none;
}
.cal-box {
    padding: 15px 17px;
}
ul.days {
    margin-top: 0px !important;
}
ul.weeks {
    margin-bottom: 0px;
}