.AppointmentMoveModal__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}
.AppointmentMoveModal__row {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.AppointmentMoveModal__label {
  font-size: 13px;
  color: #8c8c8c;
  min-width: 64px;
}
.AppointmentMoveModal__value {
  font-size: 14px;
  font-weight: 500;
  color: #262626;
}
@charset "UTF-8";
.AppointmentCard {
  position: absolute;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  transition: box-shadow 0.15s;
}
.AppointmentCard--dragging {
  overflow: hidden;
  cursor: grabbing !important;
  transition: none;
}
.AppointmentCard--resizing {
  overflow: hidden;
  cursor: ns-resize !important;
  transition: none;
}
.AppointmentCard--readonly {
  touch-action: auto;
}
.AppointmentCard__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  transition: box-shadow 0.15s;
}
.AppointmentCard__inner:active {
  cursor: grabbing;
}
.AppointmentCard--dragging .AppointmentCard__inner {
  cursor: grabbing;
}
.AppointmentCard--readonly .AppointmentCard__inner {
  cursor: pointer;
}
.AppointmentCard--dragging .AppointmentCard__inner {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
  opacity: 0.9;
  overflow: hidden;
}
.AppointmentCard__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 2px;
  background-color: #1890ff;
}
.AppointmentCard__time-range {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.5px;
}
.AppointmentCard__body {
  flex: 1;
  padding: 2px;
  background-color: #e6f7ff;
  overflow: hidden;
  min-height: 0;
  gap: 1px;
}
.AppointmentCard__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible;
}
.AppointmentCard__content-row {
  flex: 0 0 auto;
  min-width: 0;
  max-height: 320px;
  overflow: hidden;
}
.AppointmentCard__content-row + .AppointmentCard__content-row {
  margin-top: 2px;
}
.AppointmentCard__client-row {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.AppointmentCard__full-name {
  font-size: 10px;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.AppointmentCard__icons {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
.AppointmentCard__new-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.AppointmentCard__status-icon, .AppointmentCard__icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  line-height: 1;
}
.AppointmentCard__icon-button {
  cursor: pointer;
}
.AppointmentCard__icon-button--loyalty {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.AppointmentCard__icon {
  width: 10px !important;
  height: 10px !important;
}
.AppointmentCard__phone {
  font-size: 10px;
  color: inherit;
  opacity: 0.82;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.AppointmentCard__service {
  font-size: 10px;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  opacity: 0.92;
}
.AppointmentCard__service::before {
  content: "• ";
  color: currentColor;
}
.AppointmentCard__service--more {
  font-weight: 600;
  opacity: 0.72;
}
.AppointmentCard__title {
  font-size: 11px;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.AppointmentCard__subtitle {
  font-size: 10px;
  font-weight: 500;
  color: inherit;
  line-height: 1.1;
  opacity: 0.84;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.AppointmentCard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  overflow: visible;
}
.AppointmentCard__tags .ant-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  padding: 2px !important;
  overflow: hidden;
  font-size: 9px;
  line-height: 10px;
  border-radius: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AppointmentCard__tags-more {
  align-self: center;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.78;
}
.AppointmentCard__comment {
  display: -webkit-box;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.1;
  opacity: 0.9;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.AppointmentCard__resize-handle {
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 2;
  cursor: ns-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AppointmentCard__resize-handle--top {
  top: 0;
}
.AppointmentCard__resize-handle--bottom {
  bottom: 0;
}
.AppointmentCard__resize-handle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: rgba(24, 144, 255, 0.45);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.15s;
}
.AppointmentCard--readonly .AppointmentCard__resize-handle {
  display: none;
}
.AppointmentCard:hover .AppointmentCard__resize-handle::after {
  opacity: 1;
}
.AppointmentCard--extended .AppointmentCard__comment {
  -webkit-line-clamp: 3;
}
@charset "UTF-8";
.AppointmentCardInfoTooltip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 280px;
  max-height: min(360px, 80vh);
  overflow-y: auto;
  padding: 2px;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.88);
}
.AppointmentCardInfoTooltip__client {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.AppointmentCardInfoTooltip__name {
  overflow: hidden;
  color: #263241;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
}
.AppointmentCardInfoTooltip__contacts {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.AppointmentCardInfoTooltip__contact {
  overflow: hidden;
  color: #66758a;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AppointmentCardInfoTooltip__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.AppointmentCardInfoTooltip__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  min-height: 18px;
  padding: 2px 5px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
}
.AppointmentCardInfoTooltip__status--feature {
  border-color: #c8d4e2;
  background-color: #eef3f8;
  color: #374151;
}
.AppointmentCardInfoTooltip__status-icon, .AppointmentCardInfoTooltip__feature-icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}
.AppointmentCardInfoTooltip__feature-content {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.AppointmentCardInfoTooltip__badge-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AppointmentCardInfoTooltip__services, .AppointmentCardInfoTooltip__payment-status, .AppointmentCardInfoTooltip__comment, .AppointmentCardInfoTooltip__tags {
  padding-top: 6px;
  border-top: 1px solid #e4ebf3;
}
.AppointmentCardInfoTooltip__section-title {
  margin-bottom: 4px;
  color: #263241;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}
.AppointmentCardInfoTooltip__services-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.AppointmentCardInfoTooltip__services-item {
  position: relative;
  padding-left: 8px;
  color: #66758a;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.25;
  word-break: break-word;
}
.AppointmentCardInfoTooltip__services-item + .AppointmentCardInfoTooltip__services-item {
  margin-top: 2px;
}
.AppointmentCardInfoTooltip__services-item::before {
  position: absolute;
  left: 0;
  color: #1677ff;
  content: "•";
}
.AppointmentCardInfoTooltip__payment-status {
  display: grid;
  grid-template-columns: minmax(54px, auto) minmax(0, 1fr);
  gap: 6px;
  align-items: start;
}
.AppointmentCardInfoTooltip__label {
  color: #66758a;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}
.AppointmentCardInfoTooltip__value {
  min-width: 0;
  color: #263241;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  word-break: break-word;
}
.AppointmentCardInfoTooltip__comment, .AppointmentCardInfoTooltip__tags {
  display: flex;
  flex-direction: column;
}
.AppointmentCardInfoTooltip__comment-text {
  max-height: 88px;
  overflow-y: auto;
  color: #66758a;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.25;
  word-break: break-word;
}
.AppointmentCardInfoTooltip__tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  min-width: 0;
}
.AppointmentCardInfoTooltip__tags-row .ant-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  padding: 2px 4px !important;
  overflow: hidden;
  font-size: 10px;
  line-height: 11px;
  border-radius: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AppointmentPreviewSettings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}
.AppointmentPreviewSettings__preview {
  display: flex;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  background: #f5f7fa;
}
.AppointmentPreviewSettings__card {
  display: flex;
  flex-direction: column;
  width: 170px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.08);
}
.AppointmentPreviewSettings__fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.AppointmentPreviewFieldRow {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 2px 6px 2px 2px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
}
.AppointmentPreviewFieldRow--dragging {
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.AppointmentPreviewFieldRow--hidden .AppointmentPreviewFieldRow__label {
  color: #9ca3af;
}
.AppointmentPreviewFieldRow__handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #9ca3af;
  cursor: grab;
  touch-action: none;
}
.AppointmentPreviewFieldRow__handle:hover {
  color: #4b5563;
  background: #f3f4f6;
}
.AppointmentPreviewFieldRow__label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #262626;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.calendar-settings {
  margin: 24px;
}
.calendar-settings_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.calendar-settings_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 8px;
}
.calendar-settings_footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 8px;
  margin-top: 16px;
  max-width: 200px;
}
.calendar-settings_calendar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.calendar-settings_calendar_header {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.calendar-settings_calendar_select {
  width: 60%;
}
.calendar-settings_calendar_switch {
  align-self: flex-start;
}
.calendar-settings_calendar_description {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}
.calendar-settings_calendar_description_text {
  font-size: 14px;
  color: #5fad68;
  font-weight: 500;
}
.calendar-settings_calendar_description_container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.calendar-settings_calendar_description_divider {
  width: 2px;
  height: 32px;
  background-color: #5fad68;
}
.AddWorkScheduleModal {
  max-width: calc(100vw - 32px);
}
.AddWorkScheduleModal .ant-modal-content {
  border-radius: 14px;
  padding: 16px 20px 18px;
}
.AddWorkScheduleModal .ant-modal-header {
  margin-bottom: 14px;
}
.AddWorkScheduleModal .ant-modal-title {
  padding-right: 28px;
}
.AddWorkScheduleModal .ant-modal-footer {
  margin-top: 16px;
}
.AddWorkScheduleModal .ant-modal-footer .ant-btn {
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
}
.AddWorkScheduleModal .ant-form-item {
  margin-bottom: 10px;
}
.AddWorkScheduleModal .ant-form-item-label {
  padding-bottom: 4px;
}
.AddWorkScheduleModal .ant-form-item-label > label {
  height: auto;
  font-size: 12px;
  font-weight: 500;
  color: #66758a;
}
.AddWorkScheduleModal .ant-form-item-explain-error {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.3;
}
.AddWorkScheduleModal .ant-picker,
.AddWorkScheduleModal .ant-select .ant-select-selector {
  border-radius: 8px;
}
.AddWorkScheduleModal__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.AddWorkScheduleModal__title-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #141414;
}
.AddWorkScheduleModal__title-hint {
  font-size: 12px;
  line-height: 1.35;
  color: #8c8c8c;
}
.AddWorkScheduleModal__content {
  padding-top: 0;
}
.AddWorkScheduleModal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.AddWorkScheduleModal__details {
  display: block;
}
.AddWorkScheduleModal__summary-card, .AddWorkScheduleModal__schedule-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid #e6ebf2;
  border-radius: 10px;
  background-color: #fafbfc;
}
.AddWorkScheduleModal__summary-card--selector {
  gap: 4px;
}
.AddWorkScheduleModal__summary-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: #66758a;
}
.AddWorkScheduleModal__summary-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #263241;
  word-break: break-word;
}
.AddWorkScheduleModal__employee-field {
  margin-bottom: 4px;
}
.AddWorkScheduleModal__employee-hint {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #8c8c8c;
}
.AddWorkScheduleModal__date-field {
  margin-bottom: 0;
}
.AddWorkScheduleModal__date-picker {
  width: 100%;
}
.AddWorkScheduleModal__section-title {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #263241;
}
.AddWorkScheduleModal__time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.AddWorkScheduleModal__time-form-item {
  margin-bottom: 0;
}
@media (max-width: 550px) {
  .AddWorkScheduleModal .ant-modal-content {
    padding: 14px 14px 16px;
  }
  .AddWorkScheduleModal__time-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.CalendarDisplaySettings {
  display: inline-flex;
  min-width: 0;
}
.CalendarDisplaySettings__trigger {
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.CalendarDisplaySettings__trigger .anticon {
  font-size: 17px;
}
.CalendarDisplaySettings__content {
  width: 292px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.CalendarDisplaySettings__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.CalendarDisplaySettings__group-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.CalendarDisplaySettings__title {
  color: #262626;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.CalendarDisplaySettings__description {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
}
.CalendarDisplaySettings__segmented, .CalendarDisplaySettings__select {
  width: 100%;
}
@media screen and (max-width: 550px) {
  .CalendarDisplaySettings {
    width: 100%;
  }
  .CalendarDisplaySettings__trigger {
    width: 100%;
  }
  .CalendarDisplaySettings__content {
    width: min(292px, 100vw - 48px);
  }
}

/*# sourceMappingURL=main~38.f0843d80.css.map*/