@charset "UTF-8";
/* ../SchedulerPro/lib/SchedulerPro/feature/AllocationCellEdit.css */
.b-schedule-context-canvas .b-allocation-cell-editor {
  z-index: 10;
  box-shadow: none;
}
.b-schedule-context-canvas .b-allocation-cell-editor .b-number-field .b-spin-trigger {
  display: none;
}
.b-resource-utilization.b-editing-allocation-cell .b-active-tick {
  display: none;
}

/* ../SchedulerPro/lib/SchedulerPro/feature/CalendarHighlight.css */
:root,
:host {
  --b-calendar-highlight-border-style: dashed;
  --b-calendar-highlight-border-width: 2px;
  --b-calendar-highlight-background-transparency: 70%;
}
.b-bryntum {
  --b-calendar-highlight-color: var(--b-primary-70);
  --b-calendar-highlight-background: color-mix(in srgb, var(--b-primary-95), transparent var(--b-calendar-highlight-background-transparency));
  --b-calendar-highlight-border-color: color-mix(in srgb, var(--b-calendar-highlight-color), transparent var(--b-calendar-highlight-background-transparency));
}
.b-sch-highlighted-calendar-range {
  position: absolute;
  display: grid;
  place-items: center;
  animation-name: b-anim-fade-in;
  animation-duration: 0.2s;
  overflow: hidden;
  color: var(--b-calendar-highlight-color);
  background-color: var(--b-calendar-highlight-background);
  border: var(--b-calendar-highlight-border-width) var(--b-calendar-highlight-border-style) var(--b-calendar-highlight-border-color);
}
.b-sch-highlighted-calendar-range .b-sch-event-content {
  padding: .5em;
  text-align: center;
  font-size: var(--b-sch-event-font-size);
}

/* ../SchedulerPro/lib/SchedulerPro/feature/EventBuffer.css */
:root,
:host {
  --b-event-buffer-color: var(--b-border-6);
  --b-event-buffer-label-color: var(--b-text-4);
}
.b-event-buffer .b-sch-event:where(:not(.b-milestone)) {
  width: 100%;
}
.b-event-buffer .b-sch-event-buffer-before {
  grid-area: start;
}
.b-event-buffer .b-sch-event-buffer-after {
  grid-area: end;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer {
  align-items: center;
  height: 5px;
  background:
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 30%,
      var(--b-event-buffer-color) 30%,
      var(--b-event-buffer-color) 70%,
      transparent 70%,
      transparent 100%);
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before {
  flex-direction: row;
  justify-content: flex-end;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label {
  margin-inline-end: auto;
  padding-inline-end: 0.5em;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label,
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before i {
  translate: .1em -1em;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before i {
  margin-inline-end: .5em;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label,
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after i {
  translate: -.1em -1em;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label {
  text-align: right;
  margin-inline-start: .5em;
}
.b-event-buffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after i {
  margin-inline-start: auto;
  padding-inline-start: 0.5em;
}
.b-event-buffer.b-sch-vertical .b-sch-event-wrap {
  contain: size layout;
}
.b-event-buffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer {
  width: 5px;
  justify-self: center;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30%,
      var(--b-event-buffer-color) 30%,
      var(--b-event-buffer-color) 70%,
      transparent 70%,
      transparent 100%);
}
.b-event-buffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-before {
  grid-area: above;
  flex-direction: column;
  justify-content: flex-end;
}
.b-event-buffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label {
  margin-inline-end: .5em;
}
.b-event-buffer.b-sch-vertical .b-sch-event-wrap .b-buffer-label,
.b-event-buffer.b-sch-vertical .b-sch-event-wrap i {
  margin-right: -1.3em;
  writing-mode: vertical-rl;
}
.b-event-buffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-after {
  grid-area: below;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.b-event-buffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label {
  margin-inline-start: .5em;
}
.b-event-buffer .b-sch-event-buffer {
  display: flex;
  white-space: nowrap;
  font-size: 10px;
  color: var(--b-event-buffer-label-color);
}
.b-animating .b-sch-event-buffer {
  transition: width .2s;
}

/* ../SchedulerPro/lib/SchedulerPro/feature/EventSegments.css */
:root,
:host {
  --b-segment-link-width: 1px;
  --b-segment-link-style: dashed;
  --b-segment-link-color: var(--b-border-4);
  --b-segmented-background: transparent;
}
:is(.b-gantt-task-wrap, .b-sch-event-wrap) .b-segmented {
  border-width: 0;
  border-radius: 0;
  width: 100%;
  padding: 0;
  background: var(--b-segmented-background);
}
.b-sch-event-segments {
  position: absolute;
  top: 0;
  width: 100%;
  height: calc(50% + 0.5px);
  pointer-events: none;
  border-bottom: var(--b-segment-link-width) var(--b-segment-link-style) var(--b-segment-link-color);
}
.b-sch-event-segments .b-sch-event-segment {
  pointer-events: all;
  position: absolute;
  display: flex;
  align-items: center;
}

/* ../SchedulerPro/lib/SchedulerPro/feature/NestedEvents.css */
:root,
:host {
  --b-nested-events-header-height: 20px;
  --b-nested-events-parent-color: var(--b-neutral-40);
  --b-nested-events-parent-background: transparent;
  --b-nested-events-parent-hover-background: transparent;
  --b-nested-events-parent-selected-background: transparent;
  --b-nested-events-container-background: var(--b-neutral-97);
  --b-nested-events-container-hover-background: var(--b-neutral-93);
  --b-nested-events-container-selected-background: var(--b-neutral-91);
}
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:where(:not(.b-milestone)) {
  --b-sch-event-color: var(--b-nested-events-parent-color);
  --b-sch-event-background: var(--b-nested-events-parent-background);
  --b-sch-event-hover-background: var(--b-nested-events-parent-hover-background);
  --b-sch-event-selected-background: var(--b-nested-events-parent-selected-background);
  border-inline-start: none;
  flex-direction: column;
  width: 100%;
}
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:where(:not(.b-milestone)):hover:not(:has(.b-sch-event:hover)) {
  --b-nested-events-container-background: var(--b-nested-events-container-hover-background);
}
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:where(:not(.b-milestone)) > .b-sch-event-content {
  padding-block: 0.1em;
  flex: 0 0 var(--b-nested-events-header-height);
  min-height: 0;
}
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:where(:not(.b-milestone))::before,
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:where(:not(.b-milestone))::after {
  display: none;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-traced,
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-bordered,
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-outlined {
  --b-nested-events-container-background: transparent;
  --b-nested-events-container-hover-background: transparent;
  --b-nested-events-container-selected-background: transparent;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-traced,
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-bordered {
  --b-nested-events-parent-background: var(--b-neutral-95);
  --b-nested-events-parent-hover-background: var(--b-neutral-93);
  --b-nested-events-parent-selected-background: var(--b-neutral-91);
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded > .b-sch-event:where(:not(.b-milestone)) {
  border-radius: 0;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded > .b-sch-event:where(:not(.b-milestone)) .b-nested-events-container {
  border-radius: var(--b-sch-event-border-radius);
}
.b-nested-events-container {
  position: relative;
  align-self: flex-start;
  flex: 1;
  width: 100%;
  overflow: visible;
  transition: background .2s;
  border-radius: inherit;
  background: var(--b-nested-events-container-background);
}
.b-sch-event-wrap.b-selected .b-nested-events-container {
  --b-nested-events-container-background: var(--b-nested-events-container-selected-background);
}
.b-nested-events-container .b-sch-event:where(:not(.b-milestone)) {
  width: 100%;
}
.b-nested-events-container .b-sch-event {
  translate: calc(var(--b-sch-event-border-width) * -1);
}
.b-nested-events-container.b-nested-events-layout-stack {
  overflow-y: auto;
  overflow-x: hidden;
}
.b-dependencies:not(.b-dependency-only-parent) .b-nested-events-parent > .b-sch-event,
.b-dependencies:not(.b-dependency-only-parent) .b-nested-events-container.b-nested-events-layout-stack {
  overflow: visible;
}
.b-dependencies:not(.b-dependency-only-parent) .b-nested-event.b-sch-event-hover {
  z-index: 9;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-vertical > .b-sch-event:where(:not(.b-milestone)) {
  flex-direction: row;
  padding: 0;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-vertical > .b-sch-event:where(:not(.b-milestone)) > .b-sch-event-content {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-vertical .b-nested-events-container {
  height: 100%;
}
.b-nested-events .b-sch-dependencies-canvas {
  z-index: 8;
}

/* ../SchedulerPro/lib/SchedulerPro/feature/PercentBar.css */
:root,
:host {
  --b-percent-bar-z-index: 1;
  --b-percent-bar-blend-mode: multiple;
  --b-percent-bar-handle-text-color: var(--b-grid-cell-color);
}
.b-percent-bar .b-sch-event-wrap,
.b-percent-bar .b-sch-event {
  overflow: visible;
}
.b-task-percent-bar-outer {
  position: absolute;
  inset: 0;
  overflow: clip;
  transition: background-color 0.2s;
  border-radius: calc(var(--b-sch-event-border-radius) - var(--b-sch-event-border-width, 0px));
}
.b-task-percent-bar {
  --b-percent-bar-background: color-mix(in srgb, var(--b-primary), transparent 70%);
  border-start-start-radius: inherit;
  border-end-start-radius: inherit;
  box-sizing: content-box;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  line-height: initial;
  transition:
    color 0.2s,
    background-color 0.2s,
    opacity 0.2s;
  mix-blend-mode: var(--b-percent-bar-blend-mode);
  background: var(--b-percent-bar-background);
  z-index: var(--b-percent-bar-z-index);
}
.b-sch-horizontal .b-task-percent-bar,
.b-gantt .b-task-percent-bar {
  height: 100%;
  max-width: 100%;
  text-align: right;
}
.b-sch-vertical .b-task-percent-bar {
  width: 100%;
  max-height: 100%;
}
.b-animating .b-task-percent-bar {
  transition:
    color 0.2s,
    width 0.2s,
    height 0.2s;
}
.b-task-percent-bar-resizing-task .b-task-percent-bar {
  transition: background-color 0.2s;
}
.b-task-percent-bar-handle {
  position: absolute;
  width: 0;
  height: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  border-color: #fff;
  border-right-color: transparent;
  border-left-color: transparent;
  border-width: 0 5px 6px 5px;
  border-style: solid;
  opacity: 1;
}
.b-sch-horizontal .b-task-percent-bar-handle,
.b-gantt .b-task-percent-bar-handle {
  cursor: ew-resize !important;
  bottom: 0;
  margin-inline-start: -5px;
}
.b-gantt-task-parent .b-task-percent-bar-handle {
  bottom: 8px;
}
.b-sch-vertical .b-task-percent-bar-handle {
  cursor: ns-resize !important;
  left: 0;
  margin-top: -4px;
  transform: rotate(90deg);
}
.b-sch-horizontal .b-sch-event .b-task-percent-bar-handle {
  margin-inline-start: -8px;
  border-width: 0 6px 7px 7px;
}
.b-sch-vertical .b-sch-event .b-task-percent-bar-handle {
  margin-inline-start: -3px;
  border-width: 0 6px 7px 7px;
}
.b-sch-event.b-sch-event-selected .b-task-percent-bar-handle {
  z-index: 1000;
}
.b-task-percent-bar-handle::after {
  position: absolute;
  margin-top: 10px;
  font-size: .8em;
  color: var(--b-percent-bar-handle-text-color);
}
:is(.b-task-percent-bar-show-percentage:where(:not(.b-resizing-event, .b-dragging-event)).b-task-percent-bar-resizing-task, .b-task-percent-bar-show-percentage:where(:not(.b-resizing-event, .b-dragging-event)) .b-sch-event-hover) .b-task-percent-bar-handle::after {
  content: attr(data-percent) "%";
}
.b-sch-vertical .b-task-percent-bar-handle::after {
  margin-top: -2em;
  rotate: -90deg;
}
:is(.b-task-percent-bar-resizing-task, .b-task-percent-bar-resizing-event) .b-sch-event,
:is(.b-task-percent-bar-resizing-task, .b-task-percent-bar-resizing-event) .b-gantt-task {
  user-select: none;
  cursor: ew-resize !important;
  overflow: visible;
}
.b-task-percent-bar-drag-disabled .b-task-percent-bar-handle,
.b-read-only .b-task-percent-bar-handle {
  display: none !important;
}

/* ../SchedulerPro/lib/SchedulerPro/feature/ResourceNonWorkingTime.css */
:root,
:host {
  --b-resource-non-working-time-background: color-mix(in srgb, var(--b-neutral-60), transparent var(--b-resource-non-working-time-background-opacity));
  --b-resource-non-working-time-background-opacity: 95%;
  --b-resource-non-working-time-color: var(--b-neutral-10);
  --b-resource-non-working-time-zindex: 5;
}
.b-resource-non-working-time-canvas {
  z-index: var(--b-resource-non-working-time-zindex);
}
.b-sch-resource-non-working-time {
  --b-resource-time-range-color: var(--b-resource-non-working-time-color);
  --b-resource-time-range-background: var(--b-resource-non-working-time-background);
}

/* ../SchedulerPro/lib/SchedulerPro/feature/TimeSpanHighlight.css */
:root,
:host {
  --b-time-span-highlight-range-font-size: var(--b-sch-event-font-size);
  --b-time-span-highlight-range-opacity: .5;
  --b-time-span-highlight-unavailable-background: var(--b-neutral-95);
  --b-time-span-highlight-unavailable-color: var(--b-neutral-40);
}
.b-bryntum {
  --b-time-span-highlight-range-color: var(--b-primary-40);
  --b-time-span-highlight-range-background: var(--b-primary-95);
  --b-time-span-highlight-range-border-color: var(--b-primary-70);
}
.b-sch-highlight-container {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  pointer-events: none;
}
.b-sch-highlighted-range {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: opacity;
  transition-duration: 0.3s;
  color: var(--b-time-span-highlight-range-color);
  font-size: var(--b-time-span-highlight-range-font-size);
  opacity: var(--b-time-span-highlight-range-opacity);
}
.b-sch-highlighted-range.b-unavailable {
  color: var(--b-time-span-highlight-unavailable-color);
  background: var(--b-time-span-highlight-unavailable-background);
}
.b-sch-highlighted-range-name {
  text-overflow: ellipsis;
  overflow: hidden;
}
.b-sch-highlighted-range-default {
  background: var(--b-time-span-highlight-range-background);
  border: 2px dashed var(--b-time-span-highlight-range-border-color);
}
.b-timeline-base.b-transition-highlight .b-sch-highlighted-range[data-sync-id] {
  transition-property:
    width,
    height,
    inset-inline-start,
    top,
    opacity;
}
@starting-style {
  .b-sch-highlighted-range {
    opacity: 0;
  }
}

/* ../SchedulerPro/lib/SchedulerPro/view/ResourceGrid.css */
:is(.b-resources-tab, .b-resource-grid) .b-grid-row:not(.b-group-row) .b-not-editable {
  --b-grid-cell-background: var(--b-neutral-98);
  --b-grid-cell-hover-background: var(--b-neutral-96);
  --b-grid-cell-selected-background: var(--b-neutral-95);
  --b-grid-cell-hover-selected-background: var(--b-neutral-94);
}

/* ../SchedulerPro/lib/SchedulerPro/view/ResourceHistogram.css */
:root,
:host {
  --b-resource-histogram-bar-legend-font-size: inherit;
  --b-resource-histogram-bar-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 70%);
  --b-resource-histogram-bar-hover-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 50%);
  --b-resource-histogram-underallocated-bar-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 40%);
  --b-resource-histogram-underallocated-bar-hover-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 20%);
  --b-resource-histogram-overallocated-bar-color: color-mix(in srgb, var(--b-color-red), var(--b-mix) 40%);
  --b-resource-histogram-overallocated-bar-hover-color: color-mix(in srgb, var(--b-color-red), var(--b-mix) 20%);
}
.b-histogram-bar-tooltip span.b-underallocated {
  color: var(--b-resource-histogram-underallocated-bar-color);
}
.b-histogram-bar-tooltip span.b-overallocated {
  color: var(--b-resource-histogram-overallocated-bar-color);
}
.b-resource-histogram-histogram {
  padding: 0;
  background-color: transparent;
}
.b-resource-histogram-histogram .b-bar-legend {
  font-size: var(--b-resource-histogram-bar-legend-font-size);
  pointer-events: none;
}
.b-resource-histogram-histogram rect,
.b-resource-histogram-histogram rect.b-series-index-0 {
  fill: var(--b-resource-histogram-bar-color);
}
:is(.b-resource-histogram-histogram rect, .b-resource-histogram-histogram rect.b-series-index-0).b-underallocated {
  fill: var(--b-resource-histogram-underallocated-bar-color);
}
:is(.b-resource-histogram-histogram rect, .b-resource-histogram-histogram rect.b-series-index-0).b-underallocated:hover {
  fill: var(--b-resource-histogram-underallocated-bar-hover-color);
}
:is(.b-resource-histogram-histogram rect, .b-resource-histogram-histogram rect.b-series-index-0).b-overallocated {
  fill: var(--b-resource-histogram-overallocated-bar-color);
}
:is(.b-resource-histogram-histogram rect, .b-resource-histogram-histogram rect.b-series-index-0).b-overallocated:hover {
  fill: var(--b-resource-histogram-overallocated-bar-hover-color);
}
:is(.b-resource-histogram-histogram rect, .b-resource-histogram-histogram rect.b-series-index-0):hover {
  fill: var(--b-resource-histogram-bar-hover-color);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/CalendarEditor.css */
:root,
:host {
  --b-calendar-editor-non-working-day-background: color-mix(in srgb, var(--b-color-red), transparent 90%);
  --b-calendar-editor-working-day-background: transparent;
}
.b-calendar-editor .b-tab-panel {
  height: 100%;
}
.b-calendar-editor .b-tab-panel-item {
  height: 100%;
}
.b-calendar-editor .b-widget.b-html {
  user-select: none;
}
.b-calendar-editor .b-calendar-editor-content {
  padding-top: 0;
}
.b-calendar-editor [data-ref=generalTab] {
  padding-top: 1.5em;
  flex-wrap: wrap;
}
.b-calendar-editor [data-ref=generalTab] [data-ref=divider] {
  height: 1px;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/ResourceRateTableEditor.css */
.b-resource-rate-table-editor {
  width: 40em;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/SchedulingIssueResolutionPopup.css */
.b-scheduling-issue-resolution-popup {
  max-width: min(600px, 80%);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/TaskEditorBase.css */
:root,
:host {
  --b-task-editor-padding: var(--b-panel-with-header-padding);
  --b-task-editor-occurrence-info-primary: var(--b-color-red);
  --b-task-editor-bottom-button-width: 6.5em;
}
.b-bryntum {
  --b-task-editor-occurrence-info-background: var(--b-primary-97);
}
.b-task-editor-base {
  --b-tab-padding: 0 .75em;
  --b-tab-icon-only-padding: 0 .75em;
}
.b-task-editor-base > .b-panel-body-wrap > .b-popup-content {
  padding: var(--b-task-editor-padding);
}
.b-task-editor-base:not(.b-read-only) .b-popup-content {
  padding-bottom: 0;
}
.b-task-editor-base > .b-panel-body-wrap > .b-bottom-toolbar .b-button {
  min-width: var(--b-task-editor-bottom-button-width);
}
.b-occurrence-info-toolbar {
  --b-primary: var(--b-task-editor-occurrence-info-primary);
  --b-toolbar-background: var(--b-task-editor-occurrence-info-background);
  --b-toolbar-padding: .5em var(--b-panel-padding);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/Timeline.css */
:root,
:host {
  --b-timeline-label-font-weight: 500;
  --b-timeline-background: transparent;
  --b-timeline-border-color: var(--b-grid-cell-border-color);
  --b-timeline-label-color: var(--b-text-3);
}
.b-timeline {
  overflow: visible;
  background: var(--b-timeline-background);
  --b-grid-header-background: transparent;
}
.b-timeline .b-grid-panel-body {
  padding: 2em 10em 4em 10em;
}
.b-timeline .b-virtual-scrollers,
.b-timeline .b-yscroll-pad {
  display: none !important;
}
.b-timeline .b-sch-header-row:not(:first-child) {
  display: none;
}
.b-timeline .b-grid-row {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.b-timeline .b-grid-cell {
  border-block: 1px solid var(--b-timeline-border-color);
}
.b-timeline .b-sch-header-time-axis-cell {
  justify-content: flex-start;
  padding: 0 0 0.5em 0.5em;
  border: none;
  font-weight: var(--b-timeline-label-font-weight);
  color: var(--b-timeline-label-color);
}
.b-timeline .b-sch-header-time-axis-cell:before {
  content: " ";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 0.7em;
  border-inline-start: 1px solid var(--b-timeline-border-color);
}
.b-timeline .b-scheduler-base,
.b-timeline .b-grid-body-container,
.b-timeline .b-grid-vertical-scroller,
.b-timeline .b-grid-sub-grid,
.b-timeline .b-sch-foreground-canvas {
  overflow: visible !important;
  contain: none !important;
}
.b-timeline .b-grid-header {
  min-height: 1.5em;
}
.b-timeline .b-grid-vertical-overflow .b-grid-header-scroller:last-child {
  border-right: none;
}
.b-timeline .b-timeline-start-date {
  inset-inline-start: -1em;
  translate: -100%;
}
.b-timeline .b-timeline-end-date {
  inset-inline-end: -1em;
  translate: 100%;
}
.b-timeline .b-timeline-start-date,
.b-timeline .b-timeline-end-date {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 6em;
  color: var(--b-timeline-label-color);
  font-size: var(--b-grid-header-font-size);
  font-weight: var(--b-timeline-label-font-weight);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/VersionGrid.css */
.b-bryntum {
  --b-version-grid-property-value-background: var(--b-neutral-95);
  --b-version-grid-property-font-size: .9em;
}
.b-version-grid-property-update-desc {
  display: flex;
  gap: 0.4em;
  align-items: baseline;
  font-size: var(--b-version-grid-property-font-size);
}
.b-version-grid-property-name::after {
  content: ":";
}
.b-version-grid-property-before,
.b-version-grid-property-after {
  padding: 0.2em 0.4em;
  border-radius: 0.1em;
  background: var(--b-version-grid-property-value-background);
}
.b-version-grid-empty-value {
  opacity: 0.5;
}
.b-version-grid .b-tree-cell.b-tree-parent-cell {
  font-weight: 400;
}
.b-version-grid-highlighted-entity {
  font-weight: 700;
}
.b-version-grid-comparing {
  background: var(--b-color-blue);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/calendareditor/CalendarEditorAvailabilityRangeContainer.css */
.b-calendar-editor-availability-range-container {
  flex: 1;
}
.b-calendar-editor-availability-range-container .b-flex-row {
  align-items: center;
}
.b-calendar-editor-availability-range-container .b-availability-range .b-time-field {
  width: 6.6em;
}
.b-calendar-editor-availability-range-container .b-availability-range [data-ref=addRangeButton] {
  margin-inline-start: auto;
}
.b-calendar-editor-availability-range-container .b-availability-range:only-child [data-ref=removeRangeButton] {
  display: none;
}
.b-calendar-editor-availability-range-container .b-availability-range:not(:first-child) [data-ref=addRangeButton] {
  display: none;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/calendareditor/CalendarEditorBaseTab.css */
.b-calendar-editor-base-tab {
  flex-flow: nowrap;
}
.b-calendar-editor-base-tab .b-grid[data-ref=grid] {
  flex: 0 0 15em;
  margin-top: 1.5em;
  border: var(--b-text-field-outlined-border-width) solid var(--b-text-field-outlined-border-color);
  border-radius: var(--b-widget-border-radius);
  --b-panel-bottom-toolbar-padding: 0.5em;
  --b-toolbar-gap: 0;
  --b-grid-cell-padding-inline: 0;
}
.b-calendar-editor-base-tab .b-grid[data-ref=grid] .b-grid-row.b-invalid .b-grid-cell {
  color: var(--b-text-field-invalid-border-color);
}
.b-calendar-editor-base-tab .b-grid[data-ref=grid] .b-grid-cell.b-color-cell .b-color-cell-swatch {
  border-radius: var(--b-widget-border-radius);
  margin-inline: 0;
}
.b-calendar-editor-base-tab .b-calendar-editor-form {
  grid-template-columns: max-content 1fr 4em max-content 1fr 4em;
  padding-top: 1.5em;
}
:is(.b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=nameField], .b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=exceptionStartDateField], .b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=isWorkingField]) > .b-label {
  width: 3.5em;
}
.b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=nameField] {
  grid-column: span 5;
}
.b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=startDateField],
.b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=endDateField],
.b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=exceptionStartDateField],
.b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=exceptionEndDateField] {
  grid-column: span 3;
}
.b-calendar-editor-base-tab .b-calendar-editor-form [data-ref=isWorkingField] {
  grid-column: span 5;
  gap: var(--bi-field-gap);
}
.b-calendar-editor-base-tab .b-calendar-editor-form .b-span-row {
  grid-column: 1 / -1;
}
.b-calendar-editor-base-tab .b-calendar-editor-form .b-color-field input {
  max-width: 0;
  padding-inline: 0;
}
.b-calendar-editor-base-tab .b-calendar-editor-form .b-color-field .b-field-trigger {
  display: none;
}
.b-calendar-editor-base-tab .b-calendar-editor-form .b-color-field .b-color-box {
  margin-inline-start: 1.25em;
  width: 1.5em;
}
.b-calendar-editor-base-tab .b-widget[data-ref=panel] {
  overflow-y: auto;
  height: 100%;
}
.b-calendar-editor-base-tab .b-availability-range {
  align-items: center;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/calendareditor/CalendarEditorDateInfo.css */
.b-calendar-editor-content .b-calendar-editor-date-info {
  display: block;
}
.b-calendar-editor-date-info {
  padding: 0.4em;
}
.b-calendar-editor-date-info .b-time-ranges {
  padding-inline-start: 2em;
}
.b-calendar-editor-date-info .b-intervals {
  padding-inline-start: 0.8em;
}
.b-calendar-editor-date-info .b-intervals li {
  display: flex;
  align-items: center;
  gap: 1em;
}
.b-calendar-editor-date-info .b-intervals li.b-interval:hover {
  cursor: pointer;
  text-decoration: underline;
}
.b-calendar-editor-date-info .b-intervals li:before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: var(--b-widget-border-radius);
}
.b-calendar-editor-date-info .b-intervals li.b-interval:before {
  background-color: var(--b-primary);
  display: inline-block;
}
.b-calendar-editor-date-info .b-intervals li.b-interval:hover:before {
  text-decoration: none;
}
.b-calendar-editor-date-info .b-date-text {
  font-weight: bold;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/calendareditor/CalendarEditorDatePicker.css */
.b-calendar-editor-date-picker {
  --b-toolbar-padding: 0;
  --b-calendar-panel-gap: .57em;
  --b-date-picker-min-width: 0;
  --b-panel-with-header-top-toolbar-background: transparent;
}
.b-calendar-editor-date-picker .b-calendar-panel-cell:not(.b-selected-date) .b-date-picker-cell-inner.b-non-working-day {
  background: var(--b-calendar-editor-non-working-day-background);
}
.b-calendar-editor-date-picker .b-calendar-panel-cell:not(.b-selected-date) .b-date-picker-cell-inner.b-working-day {
  background: var(--b-calendar-editor-working-day-background);
}
.b-calendar-editor-date-picker .b-calendar-panel-cell .b-date-picker-cell-inner .b-interval-badges {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0.4em;
  display: flex;
}
.b-calendar-editor-date-picker .b-calendar-panel-cell .b-date-picker-cell-inner .b-interval-badges .b-interval-badge:before {
  content: " ";
  min-width: 0.5em;
  min-height: 0.5em;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background-color: var(--b-primary);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/calendareditor/CalendarEditorExceptionTab.css */
.b-calendar-editor-exception-tab {
  --b-divider-font-size: 1em;
  --b-divider-line-color: var(--b-text-field-outlined-border-color);
  --b-divider-text-color: var(--b-text-field-label-color);
}
.b-calendar-editor-exception-tab .b-calendar-editor-exception-panel {
  flex: 1;
}
.b-calendar-editor-exception-tab .b-calendar-editor-availability-range-container {
  padding-inline-start: 4.5em;
  margin-bottom: 1em;
}
.b-calendar-editor-exception-tab .b-calendar-editor-availability-range-container .b-availability-range .b-time-field {
  width: 11em;
}
.b-calendar-editor-exception-tab .b-recurrence-editor .b-recurrence-month-days-button-group {
  margin-block-start: 0;
}
.b-calendar-editor-exception-tab .b-slide-toggle-splitter {
  grid-template-areas: "line-before before inner line-after";
  grid-template-columns: 1fr auto auto 1fr;
  width: auto;
}
.b-calendar-editor-exception-tab .b-slide-toggle-splitter label {
  justify-self: end;
}
.b-calendar-editor-exception-tab .b-slide-toggle-splitter::before,
.b-calendar-editor-exception-tab .b-slide-toggle-splitter::after {
  content: "";
  height: 1px;
  width: 100%;
  background: var(--b-text-field-outlined-border-color);
}
.b-calendar-editor-exception-tab .b-slide-toggle-splitter::before {
  grid-area: line-before;
}
.b-calendar-editor-exception-tab .b-slide-toggle-splitter::after {
  grid-area: line-after;
}
.b-calendar-editor-exception-tab [data-ref=noRecordAddButton] {
  margin-top: 1.5em;
}
.b-calendar-editor-exception-tab .b-divider {
  margin-block: 1.5em 1em;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/calendareditor/CalendarEditorLegend.css */
.b-calendar-editor-legend {
  display: block;
  padding: 0;
}
.b-calendar-editor-legend > ul {
  padding: 0;
  margin-top: 0;
}
.b-calendar-editor-legend > ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.b-calendar-editor-legend > ul li.b-interval-legend:hover {
  cursor: pointer;
  text-decoration: underline;
}
.b-calendar-editor-legend > ul li:before {
  content: "";
  display: inline-block;
  text-align: center;
  margin-inline-end: 1em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  background: currentColor;
  vertical-align: middle;
  border-radius: var(--b-widget-border-radius);
}
.b-calendar-editor-legend > ul li.b-working-day,
.b-calendar-editor-legend > ul li.b-non-working-day {
  line-height: 2em;
}
.b-calendar-editor-legend > ul li.b-working-day {
  margin-bottom: 0.8em;
}
.b-calendar-editor-legend > ul li.b-non-working-day {
  margin-bottom: 1.5em;
}
.b-calendar-editor-legend > ul li.b-non-working-day:before,
.b-calendar-editor-legend > ul li.b-working-day:before {
  border: solid 1px #bbb;
  border-radius: 50%;
}
.b-calendar-editor-legend > ul li.b-non-working-day:before {
  background: var(--b-calendar-editor-non-working-day-background);
}
.b-calendar-editor-legend > ul li.b-working-day:before {
  background: var(--b-calendar-editor-working-day-background);
}
.b-calendar-editor-legend > ul li.b-interval-legend:before {
  color: var(--b-primary);
  display: inline-block;
}
.b-calendar-editor-legend > ul li.b-interval-legend:hover:before {
  text-decoration: none;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/calendareditor/CalendarEditorWeekTab.css */
.b-calendar-editor-week-panel {
  flex: 1;
}
.b-calendar-editor-week-panel .b-availability-day {
  gap: 0;
}
.b-calendar-editor-week-panel .b-availability-day .b-slide-toggle {
  margin-inline: auto 1em;
}
.b-calendar-editor-week-panel .b-day-paste {
  display: none;
}
.b-calendar-editor-week-panel [data-ref=container] {
  align-items: flex-start;
  width: 11em;
  padding-top: 1em;
}
.b-calendar-editor-week-panel [data-ref=weekContainer].b-copying .b-availability-day.b-copied .b-day-copy {
  display: inherit;
}
.b-calendar-editor-week-panel [data-ref=weekContainer].b-copying .b-availability-day.b-copied .b-day-paste {
  display: none;
}
.b-calendar-editor-week-panel [data-ref=weekContainer].b-copying .b-availability-day:not(.b-copied) .b-day-copy {
  display: none;
}
.b-calendar-editor-week-panel [data-ref=weekContainer].b-copying .b-availability-day:not(.b-copied) .b-day-paste {
  display: inherit;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/resourceeditor/ResourceEditorGeneralTab.css */
.b-resource-editor-general-tab.b-label-align-before {
  grid-template-columns: max-content 1fr max-content;
  padding: var(--b-panel-padding) 0 0;
  --b-field-align-before-field-column: span 2;
}
.b-resource-editor-general-tab.b-label-align-before [data-ref=materialLabel] {
  --b-field-align-before-field-column: span 1;
}
.b-resource-editor-general-tab.b-label-align-before [data-ref=materialLabel] .b-label.b-align-end {
  font-size: .9em;
  font-style: italic;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/resourceeditor/ResourceEditorRateTablesTab.css */
.b-resource-editor-rate-tables-tab {
  padding: 0;
  padding-top: var(--b-panel-padding);
}
.b-resource-editor-rate-tables-tab .b-text-field .b-label {
  width: 6em;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/taskeditor/EditorTab.css */
.b-editor-tab:not(.b-form-tab) {
  --b-container-gap: 0;
}
.b-editor-tab:not(.b-form-tab) .b-compact-bbar {
  --b-toolbar-padding: 0;
  --b-toolbar-gap: 0;
}

/* ../SchedulerPro/lib/SchedulerPro/view/ResourceUtilization.css */
:root,
:host {
  --b-resource-utilization-bar-legend-font-size: .9em;
  --b-resource-utilization-resource-bar-legend-font-size: .9em;
  --b-resource-utilization-assignment-bar-legend-font-size: .9em;
  --b-resource-utilization-bar-legend-text-fill: var(--b-grid-cell-color);
  --b-resource-utilization-bar-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 70%);
  --b-resource-utilization-bar-hover-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 60%);
  --b-resource-utilization-underallocated-bar-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 40%);
  --b-resource-utilization-underallocated-bar-hover-color: color-mix(in srgb, var(--b-color-green), var(--b-mix) 30%);
  --b-resource-utilization-overallocated-bar-color: color-mix(in srgb, var(--b-color-red), var(--b-mix) 40%);
  --b-resource-utilization-overallocated-bar-hover-color: color-mix(in srgb, var(--b-color-red), var(--b-mix) 30%);
  --b-resource-utilization-resource-bar-legend-text-fill: var(--b-resource-utilization-bar-legend-text-fill);
  --b-resource-utilization-resource-bar-color: var(--b-resource-utilization-bar-color);
  --b-resource-utilization-resource-bar-hover-color: var(--b-resource-utilization-bar-hover-color);
  --b-resource-utilization-resource-overallocated-bar-color: var(--b-resource-utilization-overallocated-bar-color);
  --b-resource-utilization-resource-overallocated-bar-hover-color: var(--b-resource-utilization-overallocated-bar-hover-color);
  --b-resource-utilization-resource-underallocated-bar-color: var(--b-resource-utilization-underallocated-bar-color);
  --b-resource-utilization-resource-underallocated-bar-hover-color: var(--b-resource-utilization-underallocated-bar-hover-color);
  --b-resource-utilization-assignment-bar-legend-text-fill: var(--b-resource-utilization-bar-legend-text-fill);
  --b-resource-utilization-assignment-bar-color: transparent;
  --b-resource-utilization-assignment-bar-hover-color: transparent;
  --b-resource-utilization-assignment-overallocated-bar-color: transparent;
  --b-resource-utilization-assignment-overallocated-bar-hover-color: transparent;
  --b-resource-utilization-assignment-underallocated-bar-color: transparent;
  --b-resource-utilization-assignment-underallocated-bar-hover-color: transparent;
}
.b-resource-utilization .b-resource-utilization-cell {
  padding: 0;
  border-inline-end-width: 0;
  background: transparent;
}
.b-resource-utilization-histogram {
  padding: 0;
  background-color: transparent;
}
.b-resource-utilization-histogram svg g text.b-bar-legend {
  writing-mode: lr;
  alignment-baseline: middle;
  text-anchor: middle;
  pointer-events: none;
  font-size: var(--b-resource-utilization-bar-legend-font-size);
  fill: var(--b-resource-utilization-bar-legend-text-fill);
}
.b-resource-utilization-histogram rect,
.b-resource-utilization-histogram rect.b-series-index-0 {
  fill: var(--b-resource-utilization-bar-color);
}
:is(.b-resource-utilization-histogram rect, .b-resource-utilization-histogram rect.b-series-index-0):hover {
  fill: var(--b-resource-utilization-bar-hover-color);
}
:is(.b-resource-utilization-histogram rect, .b-resource-utilization-histogram rect.b-series-index-0).b-underallocated {
  --b-resource-utilization-bar-color: var(--b-resource-utilization-underallocated-bar-color);
  --b-resource-utilization-bar-hover-color: var(--b-resource-utilization-underallocated-bar-hover-color);
}
:is(.b-resource-utilization-histogram rect, .b-resource-utilization-histogram rect.b-series-index-0).b-series-index-0.b-overallocated,
:is(.b-resource-utilization-histogram rect, .b-resource-utilization-histogram rect.b-series-index-0).b-overallocated {
  --b-resource-utilization-bar-color: var(--b-resource-utilization-overallocated-bar-color);
  --b-resource-utilization-bar-hover-color: var(--b-resource-utilization-overallocated-bar-hover-color);
}
.b-resource-row .b-resource-utilization-histogram svg g text.b-bar-legend {
  font-size: var(--b-resource-utilization-resource-bar-legend-font-size);
  fill: var(--b-resource-utilization-resource-bar-legend-text-fill);
}
.b-resource-row .b-resource-utilization-histogram rect,
.b-resource-row .b-resource-utilization-histogram rect.b-series-index-0 {
  --b-resource-utilization-bar-color: var(--b-resource-utilization-resource-bar-color);
  --b-resource-utilization-bar-hover-color: var(--b-resource-utilization-resource-bar-hover-color);
}
:is(.b-resource-row .b-resource-utilization-histogram rect, .b-resource-row .b-resource-utilization-histogram rect.b-series-index-0).b-underallocated {
  --b-resource-utilization-bar-color: var(--b-resource-utilization-resource-underallocated-bar-color);
  --b-resource-utilization-bar-hover-color: var(--b-resource-utilization-resource-underallocated-bar-hover-color);
}
:is(.b-resource-row .b-resource-utilization-histogram rect, .b-resource-row .b-resource-utilization-histogram rect.b-series-index-0).b-overallocated {
  --b-resource-utilization-bar-color: var(--b-resource-utilization-resource-overallocated-bar-color);
  --b-resource-utilization-bar-hover-color: var(--b-resource-utilization-resource-overallocated-bar-hover-color);
}
:is(.b-assignment-row, .b-composite-assignment-row) .b-resource-utilization-histogram svg g text.b-bar-legend {
  font-size: var(--b-resource-utilization-assignment-bar-legend-font-size);
  fill: var(--b-resource-utilization-assignment-bar-legend-text-fill);
}
:is(.b-assignment-row, .b-composite-assignment-row) .b-resource-utilization-histogram rect,
:is(.b-assignment-row, .b-composite-assignment-row) .b-resource-utilization-histogram rect.b-series-index-0 {
  --b-resource-utilization-bar-color: var(--b-resource-utilization-assignment-bar-color);
  --b-resource-utilization-bar-hover-color: var(--b-resource-utilization-assignment-bar-hover-color);
}
:is(:is(.b-assignment-row, .b-composite-assignment-row) .b-resource-utilization-histogram rect, :is(.b-assignment-row, .b-composite-assignment-row) .b-resource-utilization-histogram rect.b-series-index-0).b-underallocated {
  --b-resource-utilization-assignment-bar-color: var(--b-resource-utilization-assignment-underallocated-bar-color);
  --b-resource-utilization-assignment-bar-hover-color: var(--b-resource-utilization-assignment-underallocated-bar-hover-color);
}
:is(:is(.b-assignment-row, .b-composite-assignment-row) .b-resource-utilization-histogram rect, :is(.b-assignment-row, .b-composite-assignment-row) .b-resource-utilization-histogram rect.b-series-index-0).b-overallocated {
  --b-resource-utilization-assignment-bar-color: var(--b-resource-utilization-assignment-overallocated-bar-color);
  --b-resource-utilization-assignment-bar-hover-color: var(--b-resource-utilization-assignment-overallocated-bar-hover-color);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/taskeditor/FormTab.css */
:root,
:host {
  --b-form-tab-padding: var(--b-container-gap) 0 2px 0;
}
.b-form-tab,
.b-recurrence-tab:not(.b-tab),
.b-overlay-scrollbar .b-form-tab.b-container.b-vertical-overflow {
  padding: var(--b-form-tab-padding);
}
.b-form-tab.b-container.b-widget.b-label-align-before > .b-widget.b-has-label > .b-field-inner {
  grid-column: span 3;
}
.b-form-tab.b-container.b-widget.b-label-align-before > .b-half-width.b-widget.b-has-label > .b-field-inner {
  grid-column: span 1;
}
.b-form-tab.b-container.b-widget .b-divider {
  grid-column: 1 / -1;
}
.b-visible-scrollbar .b-form-tab.b-container.b-widget.b-vertical-overflow {
  padding-inline-end: var(--b-container-gap);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/taskeditor/AdvancedTab.css */
.b-advanced-tab.b-form-tab.b-label-align-before.b-container {
  grid-template-columns: max-content 1fr 8em max-content;
}
.b-advanced-tab.b-form-tab.b-label-align-before.b-container .b-label {
  white-space: normal;
}
.b-advanced-tab.b-form-tab.b-label-align-before.b-container > .b-text-field.b-has-label > .b-label {
  grid-column: 1;
}
.b-advanced-tab.b-form-tab.b-label-align-before.b-container > .b-text-field.b-has-label > .b-field-inner {
  grid-column: 2;
}
.b-advanced-tab.b-form-tab.b-label-align-before.b-container > .b-slide-toggle.b-has-label > .b-label {
  grid-column: 3;
}
.b-advanced-tab.b-form-tab.b-label-align-before.b-container > .b-slide-toggle.b-has-label > .b-field-inner {
  grid-column: 4;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/taskeditor/NotesTab.css */
.b-notes-tab [data-ref=noteField] {
  height: calc(100% - .5em);
}

/* ../SchedulerPro/lib/SchedulerPro/widget/taskeditor/SchedulerAdvancedTab.css */
.b-scheduler-advanced-tab.b-container.b-widget.b-label-align-before > .b-text-field.b-has-label > .b-label {
  grid-column: 1;
}
.b-scheduler-advanced-tab.b-container.b-widget.b-label-align-before > .b-text-field.b-has-label > .b-field-inner {
  grid-column: 2;
}
.b-scheduler-advanced-tab.b-container.b-widget.b-label-align-before > .b-slide-toggle.b-has-label > .b-label {
  grid-column: 3;
}
.b-scheduler-advanced-tab.b-container.b-widget.b-label-align-before > .b-slide-toggle.b-has-label > .b-field-inner {
  grid-column: 4;
}

/* ../SchedulerPro/lib/SchedulerPro/widget/taskeditor/RecurrenceTab.css */
.b-recurrence-tab .b-recurrence-editor-panel {
  --b-panel-padding: 1.5em 0 0 0;
}

/* build/temp-entry-SchedulerPro.css */
