job-activity-scheduler {
  flex-grow: 1;
  overflow: hidden;
}

.oschedule-container {
  position: ABSOLUTE;
  height: 99%;
  width: 99%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.oschedule-filters {
  display: flex;
  align-items: center;
  min-height: 50px;
  gap: 15px;
}
.oschedule-filters > * {
  min-width: 160px;
}

.oschedule {
height: 517px;
    min-height: 514px;
  overflow: auto;
  border: 1px solid #666;
  border-radius: 5px;
}
.oschedule::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #eee;
}
.oschedule::-webkit-scrollbar-thumb {
  background: #666;
}
.oschedule ._time-row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-bottom: 1px solid #cccccc;
}

/*START slot  ===========================================================*/
.oschedule_job-slot {
  position: absolute;
  background-color: #d7d7b9;
  border-radius: 5px;
  left: 5px;
  right: 5px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: move;
  z-index: 1;
  user-select: none;
}
.oschedule_job-slot.dragging {
  z-index: 2;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.1411764706), 0 1px 5px rgba(0, 0, 0, 0.1215686275);
}
.oschedule_job-slot ._title {
  font-weight: 600;
}
.oschedule_job-slot ._participants {
  display: inline-block;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 32px;
}
.oschedule_job-slot ._top-drag {
  position: absolute;
  top: 0;
  width: 100%;
  height: 6px;
  cursor: n-resize;
}
.oschedule_job-slot ._bottom-drag {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 6px;
  cursor: s-resize;
}

/*START slot cols =======================================================*/
.oschedule_job-cols {
  display: flex;
  align-items: stretch;
  height: 100%;
  background-size: 40px 40px;
  background-image: repeating-linear-gradient(0deg, #ccc, #f5f5f5 1px, #f5f5f5 1px, #f5f5f5);
}
.disableDrag .oschedule_job-cols ._top-drag, .disableDrag .oschedule_job-cols ._bottom-drag, .disableDrag .oschedule_job-cols .oschedule_job-slot {
  cursor: default;
}
.oschedule_job-cols ._day {
  border-inline-end: 1px solid #414141;
}
.oschedule_job-cols ._day._last {
  border-inline-end-width: 0;
}
.oschedule_job-cols ._day > ._jobs {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.oschedule_job-cols ._job {
  min-width: 160px;
  max-width: 160px;
  border-inline-end: 1px solid #cccccc;
  position: relative;
}
.oschedule_job-cols ._job._last {
  border-inline-end-width: 0;
}
.oschedule_job-cols ._job ._job-work-hours {
  position: absolute;
  width: 100%;
  background-color: rgba(190, 218, 171, 0.18);
  pointer-events: none;
}

/*START HEADERS =======================================================*/
.oschedule_-headers {
  flex-grow: 1;
  display: flex;
  align-items: stretch;
}
.oschedule_-headers ._day {
  border-inline-end: 1px solid #414141;
}
.oschedule_-headers ._day._last {
  border-inline-end-width: 0;
}
.oschedule_-headers ._day > ._jobs {
  display: flex;
  align-items: stretch;
}
.oschedule_-headers ._job {
  min-width: 160px;
  max-width: 160px;
  border-inline-end: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 60px;
}
.oschedule_-headers ._job._last {
  border-inline-end-width: 0;
}
.oschedule_-headers ._header-line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-bottom: 1px solid #cccccc;
  padding: 0 5px;
}
.oschedule_-headers ._header-line._strong {
  font-weight: 600;
}
.oschedule_-headers ._header-line._nb {
  border-bottom-width: 0;
}
.oschedule_-headers ._header-line > * {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*START TOP Pane =======================================================*/
.oschedule_top-pane {
  display: flex;
  align-items: stretch;
  position: sticky;
  top: 0;
  border-bottom: 2px solid #414141;
  z-index: 50;
}
.oschedule_top-pane ._top-pane-start {
  min-height: 70px;
  border-inline-end: 2px solid #414141;
  background-color: white;
  text-align: center;
  inset-inline-start: 0;
  position: sticky;
  z-index: 10;
  min-width: 80px;
  max-width: 80px;
  border-start-start-radius: 6px;
}
.oschedule_top-pane ._top-pane-end {
  min-height: 70px;
  border-inline-end: 1px solid #414141;
  background-color: white;
  text-align: center;
}

/*START BOTTOM Pane =======================================================*/
.oschedule_bottom-pane {
  display: flex;
  align-items: stretch;
}
.oschedule_bottom-pane ._bottom-pane-start {
  border-inline-end: 2px solid #414141;
  background-color: white;
  text-align: center;
  inset-inline-start: 0;
  position: sticky;
  z-index: 5;
  min-width: 80px;
  max-width: 80px;
  font-weight: 600;
}
.oschedule_bottom-pane ._bottom-pane-start > *:nth-child(even) {
  font-size: 0.95em;
  font-style: italic;
  font-weight: 500;
}
.oschedule_bottom-pane ._bottom-pane-end {
  border-inline-end: 1px solid #414141;
  background-color: white;
  text-align: center;
}

.ui-select-bootstrap._sch .ui-select-match a.btn.btn-xs.btn-link.pull-right {
  position: absolute;
  inset-inline-end: 20px;
  top: 7px;
}
.ui-select-bootstrap._sch > .ui-select-choices {
  max-height: 250px;
}

/*# sourceMappingURL=job_activity.css.map */
