/* jQuery fullCalendar 스타일 속성 커스텀 */

.fc-content {
  padding: 8px 0;
  text-align: center;
}

span.fc-title {
  font-size: 12px;
  color: #ffffff;
}

.fc-event {
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.16);
  border: none !important;
  border-radius: 16px !important;
}

.fc-toolbar.fc-header-toolbar .fc-left {
  display: none !important;
}

.fc-toolbar.fc-header-toolbar .fc-center>div {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.fc-toolbar h2 {
  margin: 0 14px !important;
  padding: 20px 28px;
  font-weight: 600;
  font-size: 28px;
  line-height: 21px;
  background: #ffffff;
  border: 1px solid #1ab6e4;
  box-shadow: 0px 1px 24px rgb(0 0 0 / 8%);
  border-radius: 16px;
}

.fc-prev-button.fc-button.fc-state-default,
.fc-next-button.fc-button.fc-state-default {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.fc-prev-button.fc-button.fc-state-default  {
  background: url('/images/selection-arrow-left.png') #ffffff no-repeat center;

}
.fc-next-button.fc-button.fc-state-default {
  background: url('/images/selection-arrow-right.png') #ffffff no-repeat center;
}
.fc-state-hover {
  background-color: #ffffff !important;
}

.fc-icon.fc-icon-left-single-arrow,
.fc-icon.fc-icon-right-single-arrow {
  height: 2em;
  line-height: 2em;
  font-size: 1.3em !important;
  font-family: "Courier New",Courier,monospace!important;
  color: #586063;
}
  
.fc-day-header.fc-widget-header {
  padding: 95px 0 15px 0;
  background-color: #E3F1FF;
}

.fc-content-skeleton {
  height: 146px;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: left !important;
  box-sizing: border-box;
  padding: 10px;
  /* margin: 15px; */
}

.fc-other-month {
  background-color: #FAFAFA;
}

.fc-unthemed td.fc-today {
  background-color: #E3F1FF !important;
}

.fc-day-top.fc-fri.fc-today {
  height: calc(100% - 20px);

}