.comp-full-calendar {
  max-width: 880px;
  padding: 20px;
  margin: 0 auto;
  background: #fff;
}

.comp-full-calendar ul,
.comp-full-calendar p {
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.full-calendar-header {
  display: flex;
  align-items: center;
}

.full-calendar-header .header-left,
.full-calendar-header .header-right {
  flex: 1;
}

.full-calendar-header .header-center {
  flex: 1;
  text-align: center;
}

.full-calendar-header .header-right {
  text-align: right;
  .header-right-item{
    padding-left: 10px;
  }
}

.full-calendar-header .header-center .title {
  margin: 0 10px;
  font-size: $full-calendar-header-title;
}

.full-calendar-header .header-center .prev-month,
.full-calendar-header .header-center .next-month {
  cursor: pointer;
}

.full-calendar-body {
  margin-top: 20px;
}

.full-calendar-body .weeks {
  display: flex;
  width: 100%;
  border-top: 1px solid $full-calendar-border-color;
  border-bottom: 1px solid $full-calendar-border-color;
  border-left: 1px solid $full-calendar-border-color;
}

.full-calendar-body .weeks .week {
  display: block;
  flex: 1;
  height: 40px;
  font-size: $font-size-sm;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  background: rgba($gray-light-45, .1);
}

.full-calendar-body .dates {
  position: relative;
}

.full-calendar-body .dates .week-row {
  display: flex;
  border-left: 1px solid $full-calendar-border-color;
}

.full-calendar-body .dates .week-row .day-cell {
  flex: 1;
  min-height: 120px;
  // min-width: 120px;
  padding: 8px;
  border-right: 1px solid $full-calendar-border-color;
  border-bottom: 1px solid $full-calendar-border-color;
}

.full-calendar-body .dates .week-row .day-cell:hover {
  background: rgba($brand-primary, .05);
}

.full-calendar-body .dates .week-row .day-cell .day-number {
  text-align: right;
}

.full-calendar-body .dates .week-row .day-cell.today {
  background-color: $brand-primary-10;
  border-top: 2px solid $brand-primary;
  .day-number {
    // display: inline-block;
    // float: right;
    // width: 30px;
    // height: 30px;
    // line-height: 30px;
    font-weight: 700;
    color: $brand-primary;
    // text-align: center;
    // border-radius: 50%;
  }
}

.full-calendar-body .dates .week-row .day-cell.not-cur-month .day-number {
  color: rgba(0, 0, 0, .24);
}

.full-calendar-body .dates .dates-events {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.full-calendar-body .dates .dates-events .events-week {
  display: flex;
}

.full-calendar-body .dates .dates-events .events-week .events-day {
  flex: 1;
  min-height: 109px;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.full-calendar-body .dates .dates-events .events-week .events-day .day-number {
  padding: 4px 5px 4px 4px;
  text-align: right;
  opacity: 0;
}

.full-calendar-body .dates .dates-events .events-week .events-day.not-cur-month .day-number {
  color: rgba(0, 0, 0, .24);
}

.full-calendar-body .dates .dates-events .events-week .events-day .event-box .event-item {
  height: 18px;
  padding: 0 0 0 4px;
  margin-bottom: 2px;
  overflow: hidden;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, .87);
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  background-color: #c7e6fd;
}

.full-calendar-body .dates .dates-events .events-week .events-day .event-box .event-item.is-start {
  margin-left: 4px;
}

.full-calendar-body .dates .dates-events .events-week .events-day .event-box .event-item.is-end {
  margin-right: 4px;
}

.full-calendar-body .dates .dates-events .events-week .events-day .event-box .event-item.is-opacity {
  opacity: 0;
}

.full-calendar-body .dates .dates-events .events-week .events-day .event-box .more-link {
  padding-right: 2px;
  padding-left: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, .38);
  cursor: pointer;
}

.full-calendar-body .dates .more-events {
  position: absolute;
  z-index: 2;
  width: 150px;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.full-calendar-body .dates .more-events .more-header {
  display: flex;
  align-items: center;
  padding: 5px;
  font-size: 14px;
  background-color: #eee;
}

.full-calendar-body .dates .more-events .more-header .title {
  flex: 1;
}

.full-calendar-body .dates .more-events .more-header .close {
  margin-right: 2px;
  font-size: 16px;
  cursor: pointer;
}

.full-calendar-body .dates .more-events .more-body {
  height: 140px;
  overflow: hidden;
}

.full-calendar-body .dates .more-events .more-body .body-list {
  height: 120px;
  padding: 5px;
  overflow: auto;
  background-color: #fff;
}

.full-calendar-body .dates .more-events .more-body .body-list .body-item {
  height: 18px;
  padding: 0 0 0 4px;
  margin-bottom: 2px;
  overflow: hidden;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, .87);
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  background-color: #c7e6fd;
}