.mini-cal{
    display: none;
    color: #2D2D2D;
}

#calTitle{
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
    padding: 20px 16px;
    border-bottom: 1px solid #F1F1F5;
}
#calTitle #monthYear{
   font-style: normal;
   font-weight: 600;
   font-size: 16px;
   line-height: 19px;
   letter-spacing: 0.02em;
   color: #2D2D2D;
}
#calTitle .month-mover-arrows{
   display: flex;
   flex-wrap: wrap;
}
#calTitle button{
    outline: none;
    display: block;
    border: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    background: none;
}
#calTitle .month-mover.prev{
   margin-right: 38px;
}

#calThead, #calTbody{
    display: flex;
    flex-wrap: wrap;
    padding: 0px 10px;
}

#calThead{
    color: #2D2D2D;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
}

#calThead > div, #calTbody .a-date{
    box-sizing: border-box;
    flex: 1;
    min-width: calc(86% / 7);
    max-width: calc(86% / 7);
    width: calc(86% / 7);
    text-align: center;
    padding: 0 0px;
}

#calThead > div{
   font-style: normal;
   font-weight: 400;
   font-size: 12px;
   line-height: 14px;
   text-align: center;
   color: rgba(45, 45, 45, 0.8);
   margin: 0px 1%;
}

#calTbody{
    color: #2D2D2D;
    /* margin-bottom: 12px; */
}

#calTbody .a-date > span{
    display: block;
}

#calTbody .a-date{
    position: relative;
    color: inherit;
    outline: none;
    border: none;
    background: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #2D2D2D;
    border-radius: 5px;
    padding: 6px 0px;
    cursor: pointer;
    margin: 0px 1%;
}
#calTbody .a-date:hover{
   background: #DDD;
}
#calTbody .a-date.blurred{
    opacity: 0.5;
    pointer-events: none;
}
#calTbody .a-date.event:before{
    content: '';
    position: absolute;
    top: 0.2em;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fffc23;
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
}

#calTbody .a-date.current{
    outline: none;
    /* background: #0FA14A; */
    /* color:  #FFF; */
}

#calTbody .a-date.focused,
#calTbody .a-date:active{
    background: #0FA14A;
    color: #FFF;
}

#calTbody .a-date.current.event.focused{
    background-color: #fffc23;
    color: #000;
}

#calTFooter{
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 12px 16px;
}
#calTFooter .button{
   font-style: normal;
   font-weight: 400;
   font-size: 14px;
   line-height: 16px;
   text-align: center;
   letter-spacing: 0.02em;
   color: #F8F8F8;
   padding: 5px 10px;
   border-radius: 5px;
}
#calTFooter #calLink{
    font-size: 0.8em;
    display: inline-block;
    padding: 0.6em 0.8em;
    flex-shrink: 0;
    text-decoration: none;
    color: #fffc23;
}

#calTFooter #calLink:hover{
    background-color: #555;
}

#calTFooter #eventTitle{
    margin: 0;
    margin-right: 0.1em;
    font-weight: normal;
    font-size: 0.95em;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}