.vue-calendar {
  display: table;
  /* grid-template-rows: 10% 90%; */
  background: #fff;
  margin: 0 auto;
  color: #000;
  width: 392px;
  height: 462px !important;
  padding: 30px 17px 17px 17px;
  border: 1px solid #ccc;
}
.calendar-header {
  align-items: center;
  padding-bottom: 30px;
}
.header-left,
.header-right {
  flex: 1;
}
.header-center {
  flex: 3;
  text-align: center;
}
.calendar-header .title {
  margin: 0 5px;
  font-size: 18px;
  font-weight: 500;
}
.next-month,
.prev-month {
  cursor: pointer;
}
.calendar-body {
  display: table;
  /* grid-template-rows: 5% 95%; */
}
.days-header {
  display: table;
  /* grid-auto-columns: 14.25%;
  grid-template-areas: "a a a a a a a"; */
  border-top: 1px solid #f4f4f4;
  border-left: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
}
.days-body {
  display: table;
  /* grid-template-rows: auto; */
}
.day-label {
  text-align: center;
  border-right: 1px solid #f4f4f4;
  display: table-cell;
  width: 52px;
  height: 52px;
  vertical-align: middle;
}
.week-row {
  display: table;
  /* grid-template-areas: "a a a a a a a";
  grid-row-gap: 5px;
  grid-auto-columns: 14.25%; */
  border-left: 1px solid #f4f4f4;
}
.week-day {
  display: table-cell;
  border-right: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
}
.day-number {
  display: table-cell;
  width: 52px;
  height: 52px;
  text-align: center;
  vertical-align: middle;
}
.day-number.not-current{
  color: rgba(0, 0, 0, 0.3);
  background-color: rgba(245, 246, 248, 0.2);
}

.week-day.disabled {
  background-color: #f5f5f5;
}
.week-day.today > .day-number {
  font-weight: 700;
  color: red;
}
.events {
  font-size: 12px;
  cursor: pointer;
  padding: 0 0 0 4px;
}
.events .event {
  height: 18px;
  line-height: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 4px 2px 0;
  color: rgba(0, 0, 0, 0.87);
  background-color: #d4dcec;
}
.events .more-link {
  color: rgba(0, 0, 0, 0.38);
}

/*이벤트 background image*/
.eventBg_1 {
  /* default look for background events */
  /* background:url('../../../../../static/appcssimg/img/contents/img_mkml_small@2x.png') !important; */
  background:url('/static/appcssimg/img/contents/img_mkml_small@2x.png') !important;
  background-size: 52px !important;
}
.eventBg_2 {
  /* default look for background events */
  /* background:url('../../../../../static/appcssimg/img/contents/img_sierra_small@2x.png') !important; */
  background:url('/static/appcssimg/img/contents/img_sierra_small@2x.png') !important;
  background-size: 52px !important;
  color: #fff !important;
}
.eventBg_3 {
  /* default look for background events */
  /* background:url('../../../../../static/appcssimg/img/contents/img_DaVinci_small@2x.png') !important; */
  background:url('/static/appcssimg/img/contents/img_DaVinci_small@2x.png') !important;
  background-size: 52px !important;
  color: #fff !important;
}
.eventBg_4 {
  /* default look for background events */
  /* background:url('../../../../../static/appcssimg/img/contents/img_DaVinciEssence_small@2x.png') !important;*/
  background:url('/static/appcssimg/img/contents/img_DaVinciEssence_small@2x.png') !important;
  background-size: 52px !important;
  color: #fff !important;
}
.eventBg_5 {
  /* default look for background events */
  /* background:url('../../../../../static/appcssimg/img/contents/img_Insight_Forum_small@2x.png') !important; */
  background:url('/static/appcssimg/img/contents/img_Insight_Forum_small@2x.png') !important;
  background-size: 52px !important;
  color: #fff !important;
}
.eventBg_6 {
  /* background:url('../../../../../static/appcssimg/img/club/insight/ico_email_s@2x.png') no-repeat !important; */
  background:url('/static/appcssimg/img/club/insight/ico_email_s@2x.png') no-repeat !important;
  background-size: 15px !important;
}
.eventBg_7 {
  background:url('/static/appcssimg/img/contents/img_master_small.png') no-repeat !important;
  background-size: 52px !important;
  color: #fff !important;
}
.past{opacity: 0.3;}

/* 커서 포인터 추가 */
.eventBg_3,
.eventBg_5,
.eventBg_7 {cursor: pointer;}
