@font-face {
  font-family: 'CircularStd';
  font-weight: 400;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Book.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 500;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 700;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Bold.otf') format('opentype');
}

/* 커스텀 체크박스,라디오 버튼 */

.custom-checkbox {
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
  outline: none !important;
  border: 2px solid #c6c6c6;
  border-radius: 2px;
  background: #fff;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.custom-checkbox::before {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: scale(0) translate(-50%, -50%);
  line-height: 1;
}

.custom-checkbox:checked {
  background-color: #236dff;
  border-color: #236dff;
  color: white;
  zoom: 1.45;
}

.custom-checkbox:checked::before {
  border-radius: 2px;
  transform: scale(1) translate(-50%, -50%);
}

.fc-day-sun a {
  color: red !important;
}

/* 토요일 날짜: 파란색 */
.fc-day-sat a {
  color: blue !important;
}
