.calendar-classic-week {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.calendar-classic-week .day-col {
  border: 1px solid rgb(179, 179, 179);
  border-radius: 15px;
  flex: 1 1 0;
  padding: 10px 0 25px 0;
  min-width: 0;
  min-height: 500px;
}
.calendar-classic-week .day-col .day-top {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  color: rgb(60, 60, 59);
  padding: 0 15px;
  margin-bottom: 35px;
}
.calendar-classic-week .day-col .day-top.weekends {
  color: var(--blue-primary-color);
}
.calendar-classic-week .day-col .day-top .date {
  font-size: 16px;
}
.calendar-classic-week .schedule-items {
  display: flex;
  flex-direction: column;
}
.calendar-classic-week .schedule-item {
  width: 100%;
}
.calendar-classic-week .schedule-item {
  display: flex;
  align-items: center;
  border-radius: 5px;
  gap: 8px;
  flex-direction: row;
  padding: 5px 10px;
  margin-bottom: 10px;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease, padding 0.3s ease;
}
.calendar-classic-week .schedule-item.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 0;
  padding: 0;
}
.calendar-classic-week .schedule-item.hidden img {
  display: none;
}
.calendar-classic-week .schedule-item img {
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  object-fit: cover;
  --size: 28px;
  height: var(--size);
  width: var(--size);
  min-width: var(--size);
}
.calendar-classic-week .schedule-item .full-info {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}
.calendar-classic-week .schedule-item .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calendar-classic-week .schedule-item .date {
  font-size: 10px;
}
.calendar-classic-week .schedule-item.vacation {
  background-color: var(--vacation-color);
}
.calendar-classic-week .schedule-item.birthday {
  background-color: var(--birthday-color);
}
.calendar-classic-week .schedule-item.sick_leave {
  background-color: var(--sick-leave-color);
}
.calendar-classic-week .schedule-item.business_trip {
  background-color: var(--business-trip-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .calendar-classic-week .schedule-item {
    padding: 5px;
  }
  .calendar-classic-week .day-col .day-top {
    font-size: 16px;
  }
  .calendar-classic-week .day-col .day-top .date {
    font-size: 14px;
  }
  .calendar-classic-week .schedule-item img {
    --size: 18px;
  }
  .calendar-classic-week .schedule-item .date {
    font-size: 9px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .calendar-classic-week {
    gap: 10px;
  }
  .calendar-classic-week .schedule-item img {
    display: none;
  }
  .calendar-classic-week .day-col .day-top {
    font-size: 14px;
  }
  .calendar-classic-week .day-col .day-top .date {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .calendar-classic-week {
    flex-direction: column;
  }
  .calendar-classic-week .day-col {
    padding-bottom: 15px;
  }
  .calendar-classic-week .day-col .day-top {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .calendar-classic-week .day-col .day-top .date {
    font-size: 12px;
  }
  .calendar-classic-week .day-col {
    min-height: unset;
  }
}

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