.cld-main{
  width: 270px;
  margin: 0 auto;
}
.cld-main a{
  color: #555;
}
.cld-main svg{
  fill: #555;
}
  .cld-datetime{
    position: relative;
    width: 100%;
    min-width: 100px;
    max-width: 300px;
    margin: auto;
    overflow: hidden;
    background-color: #cfcfcf;
  }
  .cld-datetime .today{
    position: relative;
    float: left;
    width: calc(100% - 80px);
    margin: auto;
    text-align: center;
    height: 35px;
    line-height: 35px;
  }
  .cld-nav{
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
  .cld-nav:hover{
    cursor: pointer;
  }
  .cld-nav:hover svg{
      fill: #888;
  }
  .cld-rwd{
    float: left;
    margin-left: 20px;
    line-height: 35px;

  }
  .cld-fwd{
    float: right;
    margin-right: 20px;
    line-height: 35px;
  }
    .cld-nav svg:hover{

    }
.cld-labels, .cld-days{
  padding-left: 0;
  margin: 0 auto;
}
  .cld-label, .cld-day{
    box-sizing: border-box;
    display: inline-block;
    width: 14.28%;
    text-align: center;
  }
  .cld-day{
    border: 1px solid #eee;
    cursor: pointer;
  }
  .cld-day-active{
    background-color: #ccc;
  }
  .cld-day.today .cld-number{
    background: #555;
    color: #fff;
  }
  .cld-day.disableDay{
    opacity: 0.5;
  }
  .cld-day.nextMonth, .cld-day.prevMonth{
    opacity: 0.33;
  }
    .cld-number{
      position: relative;
      margin: 0;
      padding: 7px;
    }

    .cld-number:hover{
      background-color: #fcfcfc;
    }
      .cld-title{
        position: absolute;
        z-index: 5;
        display: none;
        top: 35px;
        left: 0;
        padding: 5px 10px;
        background: #fff;
        white-space: nowrap;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 12px;
      }
      .cld-number:hover .cld-title{
        display: block;
      }
      .cld-title::before{
        content: '';
        position: absolute;
        top: -7.5px; left: 10px;
        width: 0;
        height: 0;
        border-left: 7.5px solid transparent;
        border-right: 7.5px solid transparent;

        border-bottom: 7.5px solid #ccc;
      }
      .cld-number.eventday{
        font-weight: bold;
        color: #3A3A3A;
      }
      .cld-number.eventday:hover{
        cursor: pointer;
        background: #eee;
      }
      .today .cld-number.eventday:hover{
        background: #888;
      }
