.cld-main{
    width: 100%;
    font-size:12px;
    background-color:rgb(105, 149, 151);
    border-radius:5px;
    color:white;
  }
  .cld-main a{
    color: #aaa;
    font-weight: bold;
  }

    .cld-datetime{
      position: relative;
      width: 66%;
      min-width: 100px;
      max-width: 300px;
      margin: auto;
      margin-bottom:15px;
      padding-top:15px;
      overflow: hidden;
    }
    .cld-datetime .today{
      position: relative;
      float: left;
      width: calc(100% - 40px);
      margin: auto;
      margin-top:2px;
      text-align: center;
    }
    .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;
    }
    .cld-day .cld-number:hover{
        background-color: #0275d8;
    }
    .cld-day .cld-number{
        color:rgb(224, 222, 222);
        transition:300ms all;
    }
    .cld-day.today .cld-number{
      display: inline-block;
      height: 25px;
      width: 25px;
      border-radius: 50px;
      background: #0275d8;
      font-weight: bold;
      border:1px solid #0275d8;
      padding:5px;
      color: #fff;
    }
    .cld-day.disableDay{
      opacity: 0.5;
    }
    .cld-number a{
        color: white;
    }
    .cld-day.nextMonth, .cld-day.prevMonth{
      opacity: 0.33;
    }
      .cld-number{
        position: relative;
        margin: 2px;
        padding: 2px;
      }
        .cld-title{
          position: absolute;
          z-index: 5;
          display: none;
          top: 30px;
          left: 0;
          padding: 5px;
          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: 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-number.eventday{
          display: inline-block;
          height: 20px;
          width: 20px;
          border-radius: 50px;
          border: 1px solid #999;
        }
        .cld-number.eventday:hover{
          cursor: pointer;
          background: #eee;
        }
        .today .cld-number.eventday:hover{
          background: #888;
        }