.cld-main{
    width: 100%;
}
.cld-main a{
    color: #333;
    font-weight: bold;
}
.cld-datetime{
    position: relative;
    width: 100%;
    margin: 0px auto 10px auto;
    overflow: hidden;
}
.cld-datetime .today{
    position: relative;
    float: left;
    width: calc(100% - 40px);
    margin: auto;
    text-align: center;
    text-transform: uppercase;
}
.cld-nav{
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}
.cld-nav:hover{
    cursor: pointer;
}
.cld-nav:hover svg{
    fill: #666;
}
.cld-rwd{
    float: left;
}
.cld-fwd{
    float: right;
}
.cld-nav svg:hover{

}
.cld-labels, .cld-days{
    padding-left: 0;
}
.cld-label, .cld-day{
    display: inline-block;
    width: 14.28%;
    text-align: center;
    position: relative;
}
.cld-day.today .cld-number{
    display: inline-block;
    height: 30px;
    width: 100%;
    border-radius: 50px;
    background: #EA8863;
    color: #FFF;
}
.cld-day.disableDay{
    opacity: 0.5;
}
.cld-day.nextMonth, .cld-day.prevMonth{
    opacity: 0.33;
}
.cld-day::after {
    content: "";
    clear: both;
}
.cld-number{
    position: relative;
    margin: 5px;
    padding: 5px;
}
.cld-number::after {
    content: "";
    clear:both;
}
.cld-title{
    position: absolute;
    z-index: 5;
    display: none;
    top: 33px;
    left: 1px;
    padding: 5px 10px;
    background: #fff;
    white-space: nowrap;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
}
.cld-number:hover .cld-title:first-child{
    display: block;
    max-width: 100px;
    white-space: normal;
    text-align: left;
}
.cld-title::before{
    content: '';
    position: absolute;
    top: -7.5px; left: 7.5px;
    width: 0;
    height: 0;
    border-left: 7.5px solid transparent;
    border-right: 7.5px solid transparent;

    border-bottom: 7.5px solid #ccc;
}
.cld-title a {
    min-width: 89px;
    display: inline-block;
    font-weight: normal;
    word-break: break-word;
}
.cld-number.eventday{
    display: inline-block;
    height: 30px;
    width: 100%;
    border-radius: 50px;
    border: 1px solid #EA8863;
}
.cld-number.eventday:hover{
    cursor: pointer;
    background: #eee;
}
.today .cld-number.eventday:hover{
    background: #888;
}
