.DayColumn {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: #fff;
}
.DayColumn--non-working-day {
  background-color: #fffaf0;
}
.DayColumn__grid {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.DayColumn__restricted {
  min-height: 100%;
  background-color: #fafafa;
}
.DayColumn__slot {
  position: relative;
  height: var(--calendar-grid-step-height, 30px);
  border-bottom: 1px dashed #c9d5e3;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.15s;
}
.DayColumn__slot:nth-child(odd) {
  border-bottom-color: #d8e1ec;
}
.DayColumn__slot--occupied {
  cursor: default;
}
.DayColumn__slot:not(.DayColumn__slot--occupied):not(.DayColumn__slot--disabled):not(.DayColumn__slot--break):not(.DayColumn__slot--non-working-time):hover {
  background-color: #f0f7ff;
}
.DayColumn__slot:not(.DayColumn__slot--occupied):not(.DayColumn__slot--disabled):not(.DayColumn__slot--break):not(.DayColumn__slot--non-working-time):hover .DayColumn__slot-hover {
  opacity: 1;
}
.DayColumn__slot--disabled {
  cursor: default;
}
.DayColumn__slot--non-working {
  background-color: #e7edf4;
  border-bottom-color: transparent;
  cursor: pointer;
}
.DayColumn__slot--non-working:not(.DayColumn__slot--disabled):hover {
  background-color: #fff3d9;
}
.DayColumn__slot--non-working:not(.DayColumn__slot--disabled):hover .DayColumn__slot-hover {
  opacity: 1;
}
.DayColumn__slot--non-working-time {
  border-bottom: 1px dashed #c9d5e3;
}
.DayColumn__slot--break {
  background-color: #d8e3ee;
  border-bottom-color: transparent;
  cursor: default;
}
.DayColumn__slot--before-block {
  border-bottom-color: transparent;
}
.DayColumn__slot--block-start {
  border-top: 1px solid #b7c6d8;
}
.DayColumn__slot--block-end {
  border-bottom: 1px solid #b7c6d8;
}
.DayColumn--non-working-day .DayColumn__slot {
  background-color: #fffaf0;
}
.DayColumn--non-working-day .DayColumn__slot:not(.DayColumn__slot--occupied):not(.DayColumn__slot--disabled):not(.DayColumn__slot--break):not(.DayColumn__slot--non-working-time):hover {
  background-color: #fff3d9;
}
.DayColumn--non-working-day .DayColumn__slot--non-working {
  background-color: #eee5d6;
}
.DayColumn--non-working-day .DayColumn__slot--non-working:not(.DayColumn__slot--disabled):hover {
  background-color: #fff3d9;
}
.DayColumn--non-working-day .DayColumn__slot--break {
  background-color: #e5d8c4;
}
.DayColumn--non-working-day .DayColumn__break-block {
  background-color: #e5d8c4;
}
.DayColumn--non-working-day .DayColumn__break-block:hover {
  background-color: #dccab0;
}
.DayColumn__break-block {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d8e3ee;
  cursor: pointer;
  transition: background-color 0.15s;
}
.DayColumn__break-block:hover {
  background-color: #cbd9e7;
}
.DayColumn__break-label {
  font-size: 10px;
  font-weight: 600;
  color: #5f6f83;
  line-height: 1.15;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.DayColumn__slot-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.DayColumn__slot-hover--non-working-time {
  flex-direction: column;
  gap: 3px;
  color: #8a5a00;
}
.DayColumn__slot-hover--with-warning-label {
  padding: 0 4px 4px;
  box-sizing: border-box;
}
.DayColumn__slot-time {
  font-size: 11px;
  font-weight: 500;
  color: #1890ff;
  line-height: 1;
}
.DayColumn__slot-label {
  font-size: 11px;
  color: #8c8c8c;
  line-height: 1;
}
.DayColumn__slot-warning-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  max-width: 100%;
  font-size: 10px;
  font-weight: 600;
  color: #8a5a00;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.DayColumn__slot-warning-icon {
  flex-shrink: 0;
  font-size: 10px;
  line-height: 1;
}
.DaysHeadersStrip {
  position: sticky;
  top: 0;
  z-index: 5;
  overflow: clip;
  background-color: #eef3f8;
  border-bottom: 1px solid #c8d4e2;
  border-top: 1px solid #c8d4e2;
}
.DaysHeadersStrip__track {
  display: grid;
  gap: 1px;
  background-color: #c8d4e2;
}
.DaysHeadersStrip__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  height: 52px;
  padding: 4px 8px;
  background-color: #eef3f8;
  box-sizing: border-box;
  text-align: center;
}
.DaysHeadersStrip__cell--non-working-day {
  background-color: #f0e9dc;
}
.DaysHeadersStrip__weekday {
  font-size: 11px;
  font-weight: 500;
  color: #263241;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.DaysHeadersStrip__date {
  font-size: 11px;
  font-weight: 500;
  color: #66758a;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.DaysHeadersStrip__non-working-indicator {
  font-size: 11px;
  font-weight: 500;
  color: #ad6800;
}
.DaysHeadersStrip__cell--non-working-day .DaysHeadersStrip__weekday {
  color: #ad6800;
}
.DaysHeadersStrip__cell--non-working-day .DaysHeadersStrip__date {
  color: #874d00;
}
.DaysViewport {
  flex: 1;
  min-width: 0;
  overflow: clip;
}
.DaysViewport__track {
  display: grid;
  gap: 1px;
  min-height: 100%;
  position: relative;
  background-color: #c8d4e2;
}
.DaysViewport__column {
  min-width: 0;
}
.IndividualCalendarLayout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #f6f8fb;
}
.IndividualCalendarLayout__scroll-area {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column: 1/-1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  position: relative;
}
.IndividualCalendarLayout__scroll-area::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  border-radius: 15px;
}
.IndividualCalendarLayout__scroll-area::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 15px;
}
.IndividualCalendarLayout__scroll-area::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.IndividualCalendarLayout__scroll-area ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.IndividualCalendarLayout__timeline {
  position: relative;
}
.IndividualCalendarLayout__timeline--left {
  border-right: 1px solid #c8d4e2;
}
.IndividualCalendarLayout__timeline--right {
  border-left: 1px solid #c8d4e2;
}
.IndividualCalendarLayout__center {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: clip;
  background-color: #fff;
}
.IndividualCalendarLayout__content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  background-color: #fff;
}
.IndividualCalendarLayout__empty {
  grid-column: 1/-1;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 550px) {
  .IndividualCalendarLayout {
    grid-template-columns: auto 1fr auto;
  }
}
.IndividualCalendarHeaderSettings {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.IndividualCalendarHeaderSettings__label {
  color: #262626;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .IndividualCalendarHeaderSettings {
    width: 100%;
  }
}
.IndividualCalendarHeader {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
  align-items: stretch;
  gap: 12px;
  min-height: 48px;
  width: 100%;
  padding: 6px 12px 6px 0;
}
@media screen and (max-width: 1100px) {
  .IndividualCalendarHeader {
    grid-template-columns: minmax(180px, 1fr) minmax(230px, 1fr) minmax(0, 1fr);
  }
}
.IndividualCalendarHeader__section {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
}
.IndividualCalendarHeader__section--left {
  justify-content: flex-start;
}
.IndividualCalendarHeader__section--center {
  justify-content: center;
  flex-wrap: nowrap;
}
.IndividualCalendarHeader__section--center > * {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 360px;
}
.IndividualCalendarHeader__section--right {
  justify-content: flex-end;
  gap: 12px;
}
.IndividualCalendarHeader__left-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
}
.IndividualCalendarHeader__today-button {
  flex-shrink: 0;
}
.IndividualCalendarHeader__employee-name {
  min-width: 0;
  max-width: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
}
.IndividualCalendarHeader__action {
  display: flex;
  min-width: 0;
  justify-content: flex-end;
}
.IndividualCalendarHeader__action-button {
  min-height: 40px;
  min-width: 40px;
  padding-inline: 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .IndividualCalendarHeader {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 6px 12px 0;
  }
  .IndividualCalendarHeader__section {
    width: 100%;
    align-items: stretch;
  }
  .IndividualCalendarHeader__section--left {
    flex-direction: column;
    gap: 10px;
  }
  .IndividualCalendarHeader__section--center {
    justify-content: stretch;
  }
  .IndividualCalendarHeader__section--center > * {
    max-width: none;
  }
  .IndividualCalendarHeader__section--right {
    justify-content: stretch;
    gap: 8px;
  }
  .IndividualCalendarHeader__left-summary {
    flex-direction: column;
    align-items: stretch;
  }
  .IndividualCalendarHeader__today-button {
    width: 100%;
  }
  .IndividualCalendarHeader__employee-name {
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
  }
  .IndividualCalendarHeader__action {
    justify-content: stretch;
  }
  .IndividualCalendarHeader__action--settings {
    flex: 0.8 1 0;
  }
  .IndividualCalendarHeader__action--add-workday {
    flex: 1.35 1 0;
  }
  .IndividualCalendarHeader__action-button {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .IndividualCalendarHeader {
    gap: 10px;
    padding: 0 12px;
  }
  .IndividualCalendarHeader__employee-name {
    font-size: 14px;
  }
  .IndividualCalendarHeader__action {
    width: 100%;
    flex: none;
  }
}
.IndividualCalendarPage {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/*# sourceMappingURL=main~75.4dfed510.css.map*/