.component-calendar {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 5px;
  padding: 10px;
  width: 250px;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  z-index: 300;
}
.component-calendar .component-calendar-head {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}
.component-calendar .component-calendar-head .head-content {
  width: 100%;
  text-align: center;
  font: 600 16px/18px var(--main-font);
  color: #000;
}
.component-calendar .component-calendar-body {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: column;
}
.component-calendar .component-calendar-body .component-calendar-body-head {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: row;
  background: #E9E9E9;
  border-radius: 4px;
  margin-bottom: 5px;
}
.component-calendar .component-calendar-body .component-calendar-body-head .day-head-item {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: 700;
  color: #000;
}
.component-calendar .component-calendar-body .component-calendar-body-center {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.component-calendar .component-calendar-body .component-calendar-body-center .day-item {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  cursor: pointer;
  color: #000;
}
.component-calendar .component-calendar-body .component-calendar-body-center .day-item:hover {
  background: #E9E9E9;
}
.component-calendar .component-calendar-body .component-calendar-body-center .day-item.day-none {
  color: #E9E9E9;
  cursor: default;
  background: none;
}
.component-calendar .component-calendar-body .component-calendar-body-center .day-item.day-item-empty {
  cursor: default;
  background: none;
}
.component-calendar .component-calendar-body .component-calendar-body-center .day-item.active {
  color: #fff;
  font-weight: 700;
  background: #2a79b7;
}
.component-calendar .component-calendar-body .component-calendar-body-center .day-item.link-day {
  background: #54BC43;
}

/*# sourceMappingURL=style.css.map */
