.cld-main {
    width: 100%;
    margin: 0 auto;
}
.cld-main a {
    color: #333;
    font-weight: bold;
}
.cld-datetime {
    position: relative;
    margin: 0 auto 12px;
    padding: 0 15px;
    overflow: hidden;
    border-bottom: 1px solid #3c3c3c;
}
.cld-datetime .today {
    position: relative;
    padding-bottom: 2px;
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
}
.cld-nav {
    position: absolute;
    top: 5px;
    width: 20px;
    height: 20px;
    font-size: 28px;
    z-index: 30;
}
.cld-nav:hover {
    cursor: pointer;
}
.cld-nav.cld-fwd {
    right: 10px;
}
.cld-nav.cld-rwd {
    right: 50px;
}
.cld-nav::before,
.cld-nav::after {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 1px;
    left: 5px;
    background-color: #3c3c3c;
}
.cld-nav.cld-fwd::before {
    top: 4px;
    transform: rotate(45deg);
}
.cld-nav.cld-fwd::after {
    top: 12px;
    transform: rotate(-45deg);
}
.cld-nav.cld-rwd::before {
    top: 4px;
    transform: rotate(-45deg);
}
.cld-nav.cld-rwd::after {
    top: 12px;
    transform: rotate(45deg);
}

.cld-labels, .cld-days {
    padding-left: 0;
}
.cld-days {
    margin-bottom: 0;
}
.cld-label, .cld-day {
    display: inline-block;
    width: 14.28%;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}
.cld-day.today {
    position: relative;
}
.cld-day.today::before {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 11px;
    height: 30px;
    width: 30px;
    border-radius: 15px;
    background-color: #34658f;
}
.cld-day.today .cld-number {
    color: #fff;
}
.cld-day.disableDay {
    opacity: 0.5;
}
.cld-label, .cld-day.nextMonth, .cld-day.prevMonth {
    opacity: 0.33;
}
.cld-number {
    position: relative;
    margin-bottom: 12px;
}
.cld-title {
    position: absolute;
    z-index: 5;
    display: none;
    top: 30px;
    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: 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 {
    position: relative;
}
.cld-number.eventday::before {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    width: 10px;
    top: 18px;
    left: 20px;
    border-radius: 5px;
    background-color: #6f859a;
}
