@charset "UTF-8";
/* 테이블 */
.default-board {
  width: 100%;
}
.default-board table {
  width: 100%;
}
@media (max-width: 768px) {
  .default-board table thead {
    display: none;
  }
}
.default-board table thead th {
  text-align: center;
  height: 50px;
  position: relative;
  font-weight: 300;
  background-color: #f7f7f7;
  border-top: 2px solid #0070b4;
  border-bottom: 1px solid #ddd;
}
.default-board table thead th:not(:last-child):before {
  content: "";
  background: #ddd;
  width: 1px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 13px;
}
.default-board table thead td {
  font-weight: 300;
}
@media (max-width: 768px) {
  .default-board table tbody tr {
    display: block;
    border-bottom: 1px solid #ddd;
    padding: 10px 0px;
  }
}
.default-board table tbody th,
.default-board table tbody td {
  font-weight: 300;
  background-color: #fefefe;
  border-bottom: 1px solid #ddd;
  height: 45px;
  text-align: center;
}
@media (max-width: 768px) {
  .default-board table tbody .item_mobile_hide{
    display: none !important;
  }
  .default-board table tbody{
    border-top: 2px solid #0070b4;
  }
  .default-board table tbody th,
  .default-board table tbody td {
    height: auto;
    display: block;
    padding: 2px 5px;
    min-height: 32px;
    line-height: 24px;
    text-align: left !important;
    border-bottom: 0px;
    font-weight: 400;
  }
  .default-board table tbody th[data-label],
  .default-board table tbody td[data-label] {
    position: relative;
    display: flex;
    gap: 5px;
  }
  .default-board table tbody th::before,
  .default-board table tbody td::before {
    align-items: center;
    justify-content: center;
    content: attr(data-label);
    padding: 0;
    font-weight: 400;
  }
}
.default-board table tbody th .box-text,
.default-board table tbody td .box-text {
  display: inline;
  border-radius: 0px;
  border:1px solid #ddd;
  color: #fff ;
  font-size: 1em;
  text-align: center;
  padding: 5px 8px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
@media (max-width: 768px) {
  .default-board table tbody th .box-text,
  .default-board table tbody td .box-text {
    padding: 2px 10px;
    
    font-size: 1rem;
    font-weight: 400;
  }
}
.default-board table tbody th .box-text.ing,
.default-board table tbody td .box-text.ing {
  color: #0070b4;
  font-weight: 500;
}
.default-board table tbody th .box-text.end,
.default-board table tbody td .box-text.end {
  color: #333;
  font-weight: 500;
}
.default-board table tbody th a,
.default-board table tbody td a {
  font-weight: 500;
  color: #333;
}

.holiday-name {
  margin-left: 5px;
  font-size: 0.875rem;
  font-weight: 300;
}

.categorys {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .categorys {
    flex-wrap: wrap;
  }
}
.categorys .category-item {
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  background-color: #e5f0f7;
  cursor: pointer;
}
.categorys .category-item:hover, .categorys .category-item.active {
  color: #fff;
  background-color: #0070b4;
}

.datetime {
  display: flex;
  width: 170px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.datetime button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 0px;
  border-radius: 50%;
  background-color: #e5f0f7;
  transition: opacity 0.3s ease;
}
.datetime button:hover {
  opacity: 0.7;
}
.datetime button#prev img, .datetime button#next img {
  filter: invert(14%) sepia(31%) saturate(0%) hue-rotate(191deg) brightness(98%) contrast(85%);
}
.datetime p {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.calendar {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* 달력 전체 너비 */
  border-top: 2px solid #0070b4;
  border-bottom: 1px solid #0070b4;
  margin-bottom: 60px;
}
.calendar .calendar-header {
  text-align: center;
  background-color: #e5f0f7;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
.calendar .calendar-header,
.calendar .calendar-body {
  display: flex;
  flex-wrap: wrap;
  /* 줄 바꿈 가능 */
}
.calendar .calendar-header > div {
  background-color: #e5f0f7;
}
.calendar .calendar-body > div {
  border: 1px solid #eee;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.calendar .calendar-header > div,
.calendar .calendar-body > div {
  width: 14.2857142857%;
  /* 7일로 나누어 균등 배분 */
  padding: 10px 5px;
  box-sizing: border-box;
}
.calendar .calendar-body div:nth-child(7n+1) {
  border-left: 0px;
}
.calendar .calendar-body div:nth-child(7n) {
  border-right: 0px;
}
.calendar .saturday {
  color: #2380bb;
}
.calendar .holiday {
  color: #d23030;
}
.calendar .category-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 20px;
  padding: 2px;
  font-size: 14px;
  width: 100%;
}
.calendar .category-link .category {
  border-radius: 5px;
  color: #fff;
  font-size: 1em;
  text-align: center;
  padding: 2px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.calendar .category-link .edu-name,
.calendar .category-link .edu-time {
  text-align: left;
  color: #333;
}
.calendar .number {
  margin-bottom: 5px;
  width: 100%;
  font-weight: 600;
}
@media (max-width: 768px) {
  .calendar .calendar-body div .number::after {
    display: inline-block;
    content: "(일)";
    padding-left: 5px;
    font-size: 1em;
    color: #666;
  }
  .calendar .calendar-body div:nth-child(7n-6) .number:after {
    color: #d23030;
  }
  .calendar .calendar-body div:nth-child(7n-5) .number:after {
    content: "(월)";
  }
  .calendar .calendar-body div:nth-child(7n-4) .number:after {
    content: "(화)";
  }
  .calendar .calendar-body div:nth-child(7n-3) .number:after {
    content: "(수)";
  }
  .calendar .calendar-body div:nth-child(7n-2) .number:after {
    content: "(목)";
  }
  .calendar .calendar-body div:nth-child(7n-1) .number:after {
    content: "(금)";
  }
  .calendar .calendar-body div:nth-child(7n) .number:after {
    content: "(토)";
    color: #2380bb;
  }
  .calendar .calendar-body div .holiday.number:after {
    color: #d23030;
  }
  .calendar .category-link {
    width: auto;
  }
  .calendar > .calendar-header,
  .calendar .calendar-body > div.m-remove,
  .calendar .calendar-body > div.dummy-day {
    display: none;
  }
  .calendar .calendar-header > div,
  .calendar .calendar-body > div {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100%;
    /* 7일로 나누어 균등 배분 */
    padding: 10px 5px;
    box-sizing: border-box;
    min-height: 40px;
  }
}/*# sourceMappingURL=edu_list.css.map */