#agenda {
  margin-top: 24px;
}

.cld-main {
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cld-main a {
  color: var(--color-text);
}

.cld-main svg {
  fill: var(--color-text-light);
}

.cld-datetime {
  position: relative;
  width: 100%;
  min-width: 100px;
  margin: auto;
  overflow: hidden;
  padding: 4px 16px 6px;
  background: var(--color-primary-light);
  color: var(--color-text-light);
  border-radius: 16px 16px 0 0;
  text-transform: uppercase;
}

.cld-datetime .today {
  position: relative;
  float: left;
  width: calc(100% - 40px);
  margin: auto;
  text-align: center;
  font-size: 13px;
  top: 2px;
  font-weight: 500;
}

.cld-nav {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.cld-nav:hover {
  cursor: pointer;
}

.cld-nav:hover svg {
  fill: var(--color-accent);
}

.cld-rwd {
  float: left;
}

.cld-fwd {
  float: right;
}

/* .cld-nav svg:hover {} */
.cld-labels,
.cld-days {
  padding-left: 0;
  font-size: 11px;
}

.cld-labels {
  margin: 0;
  padding: 6px 0;
  background: var(--color-primary-bright);
  color: var(--color-text-light);
}

.cld-label,
.cld-day {
  box-sizing: border-box;
  display: inline-block;
  width: 14.28%;
  text-align: center;
}

.cld-day {
  border: 1px solid #b1b1b1;
  background: #dedede;
}

.cld-day.today .cld-number {
  background: var(--color-primary);
  color: #fff;
}

.cld-day.disableDay {
  opacity: 0.5;
}

.cld-day.nextMonth,
.cld-day.prevMonth {
  opacity: 0.33;
}

.cld-number {
  position: relative;
  margin: 0;
  padding: 4px 6px;
}

.cld-title {
  line-height: 1;
  position: absolute;
  z-index: 5;
  display: none;
  top: 35px;
  left: -42px;
  padding: 8px;
  background: #fff;
  font-weight: 500;
  border: 1px solid #ccc;
  width: 120px;
  font-size: 11px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .3);
}

.cld-number:hover .cld-title {
  display: block;
}

.cld-title::before {
  content: '';
  position: absolute;
  top: -7.5px;
  left: 50px;
  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: 700;
  color: var(--color-text-light);
  background: var(--color-secondary);
}

.cld-number.eventday:hover {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text-light);
  background: var(--color-secondary-light);
}

.today .cld-number.eventday:hover {
  background: var(--color-primary-light);
}

p.cld-number {
  font-size: 14px;
}