:root {
  /* https://www.colorhexa.com/66CC66 */

  --background-color-grid-cell: #fff;
  --background-color-grid-cell-outside-shiftplan: #fafafa;
  --border-color-today: #6c6;
  --grid-is-hovered: rgba(171, 227, 171, 1);
  --grid-is-enabled: rgba(215, 242, 215, 1);
  --grid-is-disabled: rgba(228, 230, 231, 1);
}

.droppable--active.grid-cell--Tz2Mu {
  background: rgba(215, 242, 215, 1) !important;
  background: var(--grid-is-enabled) !important;
}

.droppable--hover.grid-cell--Tz2Mu {
  background-color: rgba(171, 227, 171, 1) !important;
  background-color: var(--grid-is-hovered) !important;
}

.grid-cell--header--qW56d {
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-transform: uppercase;
  align-items: center;
  font-size: 0.9em;
}

.grid-cell--Tz2Mu {
  outline: none;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.4;
  min-width: 0;
  min-height: var(--height-cell);
  background-color: #fff;
  background-color: var(--background-color-grid-cell);
  display: grid;
  padding: 2px 1px;
  grid-gap: 2px;
  gap: 2px;
  border: solid transparent;
  border-width: 0;
}

.grid-cell--no-gap--qc1f8 {
  grid-gap: 0;
  gap: 0;
  padding: 0;
  border-width: 0;
}

.grid-cell--Tz2Mu.grid-cell--special-date--FqPSg,
.grid-cell--Tz2Mu.grid-cell--today--m0rV2 {
  border-left-width: 1px;
  border-right-width: 1px;
}

.grid-cell--outside-shiftplan--k3FiV {
  background-color: #fafafa;
  background-color: var(--background-color-grid-cell-outside-shiftplan);
}

.grid-cell--today--m0rV2 {
  border-color: #6c6;
  border-color: var(--border-color-today);
}

.grid-cell--special-date--FqPSg {
  border-color: var(--background-color-special-day);
}

.grid-cell--last-row--y18R5 {
  border-bottom-width: 1px;
}

.grid-cell--droppable--wF1kA {}

:root {
  --font-weight-semibold: 600;
  --font-weight-normal: 500;
}

.text-ellipsis--qhQVS {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text-wrap--rCjf5 {
  /* this is the only option that is recognized
  * by html2canvas break-word
  * doesn't seem to work
  */
  word-break: break-all;
  white-space: normal;
  overflow-wrap: break-word;
}

.grid-table--NNkzz {
  --color-border-grid: #f0f0f0;
  --border-grid: 1px solid var(--color-border-grid);
  --background-color-print-header: #eee;
  --background-color-print: var(--color-bw-100);
  --border-grid-print: 1px solid var(--color-bw-100);
  --padding: 2px;
  --height-cell: 20px;
  --sticky-z-index: 50;
  --width-grid-label-column: 14rem;
  --grid-cell-padding-bottom: 1rem;
}

.grid-table--NNkzz {
  display: inline-grid;
  border: var(--border-grid);
  grid-template-columns: 1fr;
  background-color: var(--color-border-grid);
  grid-gap: 1px;
  gap: 1px;
  min-width: 100%;
  align-content: start;
}

.grid-table__header-cell--d2cH7 {
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  align-items: center;
  justify-content: stretch;
  font-size: 0.9em;
}

.grid-table__label-cell--Ufsnz {
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
  padding: var(--padding);
  overflow: hidden;
}

.grid-table__subgrid--KFOwA {
  grid-column: 1 / -1;
  display: inherit;
  grid-template-columns: inherit;
  grid-gap: inherit;
  grid-gap: inherit;
  gap: inherit;
  -ms-grid-column-span: inherit;
  grid-auto-rows: inherit;
}

.grid-table__subgrid--emulate-gap--xOdU1 {
  padding-top: 1px;
}

.grid-table__header--xva9g {
  display: inherit;
  top: 0;
  background-color: var(--color-border-grid);
}

.grid-table__header--sticky--KGiHn {
  position: -webkit-sticky;
  position: sticky;
  /* top header should be over labels column */
  z-index: calc(var(--sticky-z-index) + 1);
}

.grid-table__header--sticky--KGiHn::after {
  display: block;
  content: '';
  position: absolute;
  height: var(--size-material-shadow);
  width: calc(100% + 2px);
  bottom: calc(0px - var(--size-material-shadow));
  left: -1px;
  background: linear-gradient(to bottom, 
    var(--color-material-shadow-inner), 
    transparent);
}

.grid-table__content-cell--_ZUCB {
  align-content: flex-start;
}

.grid-table__content-cell--padding-bottom--zJaCE {
  padding-bottom: var(--grid-cell-padding-bottom);
  min-height: calc(var(--size-event-month) + var(--grid-cell-padding-bottom));
}

.grid-table__content-cell--stretch--e6aIU {
  align-content: inherit;
}

.grid-table__subheader-cell--zydYH {
  font-weight: var(--font-weight-semibold);
  text-align: center;
  align-items: center;
}

.grid-table--print--_JfUN {
  --background-color-grid-cell: var(--color-bw-50);
  --background-color-grid-cell-outside-shiftplan: var(--color-bw-50);
  --size-event-month: 32px;

  border: var(--border-grid-print);
  background-color: var(--background-color-print);
  min-width: 1600px;
}

.grid-table__print-content-cell--J_hPX {
  align-content: flex-start;
  white-space: pre-wrap;
}

.grid-table__print-header-cell--L3YS3 {
  font-weight: var(--font-weight-semibold);
  --background-color-grid-cell: var(--background-color-print-header); 
}

.grid-table__print-label-cell--PfNUM {
  padding: 0 0.5rem;
  justify-content: flex-start;
  text-align: left;
}

.grid-table__print-header--rHVp6 {
  background-color: var(--color-bw-100);
}

:root {
  --height-cell: 20px; 
}
.time-grid--ocVrB {
  grid-template-rows: 1fr;
}

.time-grid--edited--d9Anl {
  cursor: move;
}

.time-grid--edited--d9Anl *:not(.time-grid__row--W9UDq) {
  pointer-events: none;
}

.time-grid__row--W9UDq {
  position: relative;
  grid-auto-rows: 20px;
  grid-auto-rows: var(--height-cell);
  background-image: linear-gradient(0deg,
    transparent 23.75%, 
  var(--color-border-grid) 23.75%,
  var(--color-border-grid) 25%, 
  transparent 25%, 
  transparent 48.75%,
  var(--color-border-grid) 48.75%, 
  var(--color-border-grid) 50%, 
  transparent 50%,
  transparent 73.75%, 
  var(--color-border-grid) 73.75%, 
  var(--color-border-grid) 75%, 
  transparent 75%, 
  transparent 98.75%, 
  var(--color-border-grid) 98.75%, 
  var(--color-border-grid) 100%);
  background-size: 80px 80px;
  background-repeat: repeat;
}

.time-grid__label-row--ORikM {
  grid-auto-rows: 20px;
  grid-auto-rows: var(--height-cell);
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: var(--sticky-z-index);
}

.time-grid__label-cell--m6w03 {
  height: 100%;
  line-height: 20px;
  line-height: var(--height-cell);
}

.time-grid__label-row--ORikM::after {
  display:    block;
  content:    '';
  position:   absolute;
  width:      var(--size-material-shadow);
  height:     calc(100% + 2px);
  top:        -1px;
  right:      calc(0px - var(--size-material-shadow));
  background: linear-gradient(to right, 
    var(--color-material-shadow-inner), 
    transparent);
}

.time-grid__label-cell--border-solid--yczEG {
  border-bottom: 1px solid var(--color-border-grid);
}

.highlightable-event--active--tv8jj {
  opacity: 0.3;
}

.highlightable-event--active-highlighted--m73_M {
  opacity: 1;
}

.reset-button-css--FhvFB {
  outline: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  font: inherit;
  text-transform: inherit;
  background: inherit;
  color: inherit;
  align-items: initial;
}

:root {
  --size-event-month: 32px;
}

.event-month--atv6w {
  --background-print-event-month: rgba(240, 240, 240, 0.5);
  --border-color-print-event-month: lightgray;

  height: var(--size-event-month);
  min-width: var(--size-event-month);
  font-weight: var(--font-weight-normal);
  border-radius: 2px;
  line-height: var(--size-event-month);
  font-size: 0.8rem;
  position: relative;
  text-align: center;
}

.absence-month--jmg7B {
}

.absence-month--accepted--uL1ew {
  color: var(--absence-accepted-color);
  background-color: var(--absence-accepted-bg-color);
}

.absence-month--new--DUZU3 {
  color: var(--absence-new-color);
  background-color: var(--absence-new-bg-color);
}

.pagination-mixin--AWDcn {
  display: flex;
  grid-column: 1 / -1;
  background: var(--color-bw-50);
}

.pagination-mixin__button--VrbvL {
  font-size: 1.2em;
  color: var(--color-primary-600);
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 100vw;
  padding: 1rem 0;
}

.pagination-mixin__button--VrbvL:disabled {
  color: var(--color-grey-600);
  -webkit-animation: loading-pulse--YG5Sh 1.5s ease-out infinite;
          animation: loading-pulse--YG5Sh 1.5s ease-out infinite;
}

@-webkit-keyframes loading-pulse--YG5Sh {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loading-pulse--YG5Sh {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.grid-row__cell--sticky--XloJh {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: var(--sticky-z-index);
  display: grid;
}

.grid-row__cell--total--eEd6z {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  z-index: var(--sticky-z-index);
  display: grid;
  background: var(--color-grey-100);
}

.grid-row__cell--sticky--XloJh::after {
  display: block;
  content: '';
  position: absolute;
  width: var(--size-material-shadow);
  height: calc(100% + 2px);
  top: -1px;
  right: calc(0px - var(--size-material-shadow));
  background:
    linear-gradient(
      to right,
      var(--color-material-shadow-inner),
      transparent
    );
}

.grid-row--with-overlay--wgDDg {
  position: relative;
}

.grid-row__overlay--GGy6U {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid-header-month__month--bJJeY {
  text-transform: uppercase;
  font-size: 1em;
}

.grid-header-month__week--H9jj4 {
  font-size: 0.9em;
}

.grid-header-month__day--WZNGX {
  font-size: 0.8em;
}

.grid-header-month__label--luVZ4 {
  grid-row: 1 / 4;
}

.grid-header-month__total--PiOLy {
  grid-row: 1 / 4;
  background: var(--color-grey-100);
  position: -webkit-sticky;
  position: sticky;
  right: 0;
}

.grid-header-month__label--sticky--Nzp2c {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: calc(var(--sticky-z-index) + 1);
}

.grid-header-month__label--sticky--Nzp2c::after {
  display: block;
  content: '';
  position: absolute;
  width: var(--size-material-shadow);
  height: calc(100% + 2px);
  top: -1px;
  right: calc(0px - var(--size-material-shadow));
  background:
    linear-gradient(
      to right,
      var(--color-material-shadow-inner),
      transparent
    );
}

.day-notes-compact--PNIFV {
  align-content: center;
  align-items: center;
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  border: none;
  display: flex;
  height: 100%;
  margin: 0;
  outline: none;
  padding: 0;
  width: 100%;
}

.day-notes-compact--PNIFV:not(:disabled) {
  cursor: pointer;
}

.day-notes-compact--PNIFV:disabled {
  pointer-events: none;
}

.day-notes-compact__notes-count--aWgFx {
  margin: 0 2px;
  flex: 1 1;
  background-color: var(--color-grey-700);
  color: var(--color-bw-50);
  padding: 2px;
  margin-bottom: 1px;
  border-radius: 4px;
  font-size: 0.9em;
  line-height: 1;
}

.day-notes-compact__add-icon--xYXx2 {
  flex: 1 1;
  text-align: center;
  visibility: hidden;
}

.day-notes-compact--PNIFV:hover .day-notes-compact__add-icon--xYXx2 {
  visibility: visible;
}

.day-notes-container__label-text--ZNxwt {
  flex: 1;
}

.day-notes-container__toggle--LmscA {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-notes-container__toggle-wrapper--pA67v {
  display: flex;
  font-size: 0.8em;
}

.day-notes-container__toggle-icon--alvqp {
  flex: 1;
}

.day-notes-container__toggle-text--wuTGY {
  display: none;
  flex: 1;
  text-transform: uppercase;
  font-weight: bold;
}

.day-notes-container__toggle--with-text--Vkq1s .day-notes-container__toggle-icon--alvqp {
  display: none;
}

.day-notes-container__toggle--with-text--Vkq1s .day-notes-container__toggle-text--wuTGY {
  display: initial;
}

.day-notes-compact-container__label-text--GBk_5 { 
}

.day-notes-compact-container__icon--HhpxY {
  line-height: var(--height-cell) !important;
}

.special-dates-container__label-text--x5FqQ {
  color: var(--background-color-special-day);
}

.special-date-compact-container__date--jSBWY {
  height: var(--height-cell);
  width: 100%;
  background-color: var(--background-color-special-day);
}

.special-date-compact-container__grid-cell--SJrj4 {
  grid-gap: 0;
  gap: 0;
  padding: 0;
}

.special-dates-compact-container__label-text--gzq2g {
}

.special-dates-compact-container__icon--mcOvB {
  line-height: var(--height-cell) !important;
}

.shift-preset-month--jSmi7 {
  background-color: var(--color-bw-50);
  border: 1px solid;
  font-weight: 700;
  color: var(--color-grey-900);
  cursor: default;
}

.employee__container--QKlE2 {
  --z-index-employee-hovered: 20;
}
.employee__container--QKlE2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  border-color: inherit;
}

.employee__container--draggable--XwxyV {
  cursor: move;
}

.employee__container--fullnames--a7TPA {
  overflow: hidden;
}

/* when Employee container with actual employment
 * is hovered bring it on top, so that image/icon
 * is more visible.
 * need important to override inline styles
 */
.employee__container--has-hover--m7CG5:hover {
  z-index: var(--z-index-employee-hovered) !important;
}

/* these settings are used to display initials */
.employee--DOmd3 {
  border-radius: calc(var(--size-employee-avatar) / 2);
  height: var(--size-employee-avatar);
  width: var(--size-employee-avatar);
  background-color: var(--color-extra-employess-bg);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  line-height: var(--size-employee-avatar);
  overflow: hidden;
  border: 1px solid;
  border-color: inherit;
  margin-right: 0.5rem;
  color: var(--color-bw-100);
}

.employee__name--Le7RG {
}

/* 1. If Fullname is not selected as an
 * option to calendar only display icon.
 *
 * 2. If Employee is not being dragged,
 * hide full name.
 */
.employee__container--QKlE2:not(.employee__container--fullnames--a7TPA) .employee__name--Le7RG {
  display: none;
}

/*  dnd styles */
.draggable--handle.employee__container--QKlE2 {
  background: var(--color-bw-50);
  padding: 4px;
  transform: translateZ(0);
}

.draggable--handle.employee__container--QKlE2 .employee__name--Le7RG {
  display: block;
}

.employee--extra--2BTeG {
  z-index: 10;
  display: flex;
  justify-content: center;
  line-height: var(--size-employee-avatar);
  height: var(--size-employee-avatar);
  width: var(--size-employee-avatar);
  flex-shrink: 0;
  color: inherit;
}

/* reset styles for fullnames */
.employee--fullnames--ESNSg {}


/* show always when dragged */
.employee--draggable-handle--_y0wJ {
  min-height: 3rem;
  padding: 10px;
  min-width: 14rem;
  background-color: var(--color-bw-50);
}

.employee--draggable-handle--_y0wJ .employee--DOmd3 {
  position: relative;
  left: 0;
}

.employee-cell--kVy7t {
  color: var(--color-text-calendar);
  text-align: left;
  padding: 0 0.5rem;
}

.employee-cell__text--_QgDW {
}

.summary-cell--DspMB {
  --color-summary-cell: var(--color-grey-700);

  text-align: center;
  font-size: 0.9rem;
  color: var(--color-summary-cell);
  background: inherit;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 30px; /* 32 - 1px grid gap */
}

.summary-cell--red--PDqfV {
  --color-summary-cell: var(--color-error-700);
}

.summary-cell--green--KSCBf {
  --color-summary-cell: var(--color-primary-400);
}

.summary-cell--yellow--XHNkf {
  --color-summary-cell: var(--color-warning-700);
}

.summary__total-cell--tPDd7 {
  background: var(--color-grey-100);
}

.month__header-cell--wJTXK {
  cursor: default !important;
}

.day-note__title--r5LFl {
  margin-right: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px;
}

.day-note--mhnEB {
  align-items: center;
  background-color: var(--color-grey-700);
  border: none;
  border-radius: 2px;
  color: var(--color-bw-50);
  cursor: pointer;
  display: flex;
  font-size: 0.8em;
  justify-content: space-between;
  margin: 0;
  margin-bottom: 1px;
  outline: none;
  padding: 4px 8px;
}

:root {
  --color-material-shadow-inner: rgba(0, 0, 0, 0.24);
  --color-material-shadow-outer: rgba(0, 0, 0, 0.12);
  --size-material-shadow: 4px;
}

.material-card--_15oK {
  background: #fff;
  border-radius: 2px;
  box-shadow:
    0 1px var(--size-material-shadow) var(--color-material-shadow-outer),
    0 1px 2px var(--color-material-shadow-inner);
}

.material-shadow-right--gExoU {
  display: block;
  content: '';
  position: absolute;
  width: var(--size-material-shadow);
  right: calc(0 - var(--size-material-shadow));
  background:
    linear-gradient(
      to right,
      var(--color-material-shadow-inner),
      transparent
    );
}

.material-shadow-bottom--wdrMZ {
  display: block;
  content: '';
  position: absolute;
  height: var(--size-material-shadow);
  bottom: calc(0 - var(--size-material-shadow));
  background:
    linear-gradient(
      to bottom,
      var(--color-material-shadow-inner),
      transparent
    );
}

.day-notes-popup--h7mOS {
  position: absolute;
  display: none;
  top: 0;
  z-index: 500;
  width: 100%;
  top: -2.5em;
  min-width: 150px;
  max-width: 250px;
}

.day-notes-popup--is-open--SRpnN {
  display: block;
}

.day-notes-popup__header-wrapper--Psrzw {
  padding: 10px;
  font-size: 1.1em;
  color: var(--color-grey-600);
}

.day-notes-popup__header-wrapper--is-special--xw6wr {
  background-color: var(--background-color-special-day);
  color: var(--text-color-special-day);
}

.day-notes-popup__header--XdOH7 {
  display: flex;
  font-weight: bold;
  justify-content: space-between;
}

.day-notes-popup__header-title--EtlV2 {
  text-align: left;
  font-weight: normal;
  margin-bottom: 5px;
}

.day-notes-popup__subheader--ss3PX {
  font-size: 2em;
  text-align: left;
}

.day-notes-popup__container--Pmems {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.day-notes-popup__note-title--rIlY0 {
  margin-right: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.day-notes-popup__toggle-button--ZKYvh {
  font-size: 1.2em;
  text-align: center;
  display: flex;
}

.day-notes-popup__add-note--Sy2jm {
  margin: 0 auto 10px auto;
}

.day-notes-popup__close-button--ysst0 {
  align-self: flex-start;
}

.day-notes-popup__special-date-title--s4fnf {
  margin-bottom: 10px;
}

.absence-day--CXhlZ {
  display: flex;
  flex-direction: column;
  padding: var(--size-event-section-indent) 0.8rem 0;
  border-left: var(--width-border-event) solid var(--color-bw-100);
  overflow: hidden;
  text-align: left;
  font-weight: 500;
  font-size: var(--font-size-event);
}

.absence-day__header--MolqJ {
  display: flex;
  align-items: center;
  margin-bottom: var(--size-event-section-indent);
  font-size: 0.8rem;
}

.absence-day__reason--fgZ7a {
  flex: 1 1;
}

.absence-day--accepted--f4LTw {
  color: var(--absence-accepted-color);
  border-left-color: var(--absence-accepted-color);
  background-color: var(--absence-accepted-bg-color);
}

.absence-day--new--Hv5kt {
  color: var(--absence-new-color);
  border-left-color: var(--absence-new-color);
  background-color: var(--absence-new-bg-color);
}

.absence-day__employment--M83zH {
  display: flex;
  position: relative;
  min-height: var(--size-employee-avatar);
  font-size: var(--font-size-event-employment);
  margin-bottom: var(--size-event-section-indent);
}

.absence-day__note--BHvTi {
  margin-right: var(--size-event-section-indent);
}

.absence-day--new--Hv5kt .absence-day__employment--M83zH {
  border-color: var(--absence-new-bg-color);
}

.absence-day--accepted--f4LTw .absence-day__employment--M83zH {
  border-color: var(--absence-accepted-bg-color);
}

.day-notes--ksh7D {
  padding: 2px;
  position: relative;
  height: 100%;
}

.day-notes__list--yAynu {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.day-notes__button--RQTks {
  align-items: center;
  background: inherit;
  border: none;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.8em;
  font-weight: bold;
  margin: 0;
  outline: none;
  padding: 0 4px;
  text-align: center;
}

.day-notes__button-text--Shz6w {
  flex: 1 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.day-notes__button-icon--RG2sb {
  margin-left: 5px;
}

.day-notes__more--oWUsD {
  &:empty {
    padding: 0;
  }
}

.day-notes__more--is-empty--TqlAj {
  line-height: 4.6;
}

.day-notes__add--HqpS2 {
  flex: 1 1;
}

.day-notes__add--HqpS2 .day-notes__button-text--Shz6w,
.day-notes__add--HqpS2 .day-notes__button-icon--RG2sb {
  visibility: hidden;
}

.day-notes__add--HqpS2:hover .day-notes__button-text--Shz6w,
.day-notes__add--HqpS2:hover .day-notes__button-icon--RG2sb {
  visibility: visible;
}

.day-notes__label-cell--O9b7Z {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.day-notes-container__label-text--ZNxwt {
  flex: 1 1;
}

.day-notes-container__toggle--LmscA {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-notes-container__toggle-wrapper--pA67v {
  display: flex;
  font-size: 0.8em;
}

.day-notes-container__toggle-icon--alvqp {
  flex: 1 1;
}

.day-notes-container__toggle-text--wuTGY {
  display: none;
  flex: 1 1;
  text-transform: uppercase;
  font-weight: bold;
}

.day-notes-container__toggle--with-text--Vkq1s .day-notes-container__toggle-icon--alvqp {
  display: none;
}

.day-notes-container__toggle--with-text--Vkq1s .day-notes-container__toggle-text--wuTGY {
  display: inline;
  display: initial;
}

.special-dates--s3jHm {
  background-color: orange;
  color: var(--color-grey-700);
  padding: 4px 8px;
  font-size: 0.9em;
  overflow: hidden;
}

.special-date--QvxES {
  max-width: 200px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  overflow: hidden;
}

.special-date__label-cell--ifwEA {
  color: orange;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.special-dates-container__label-text--x5FqQ {
  color: var(--background-color-special-day);
}

.grid-header-days__day--aZPjo {
}

.grid-header-days__total--rsRnG {
  background: var(--color-grey-100);
  right: 0;
  position: -webkit-sticky;
  position: sticky;
}

.time-grid-event__container--GAqmC {
  --event-padding: 2px;
  --hovered-event-z-index: 20;
  --edited-event-z-index: 40;
}
.time-grid-event--GiNO8 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.time-grid-event__container--GAqmC {
  position: absolute;
  z-index: 1;
  width: calc(50% - var(--event-padding));
  transform: translate(var(--event-padding), var(--event-padding));
}

.time-grid-event__container--edited-original--MBzMJ {
  opacity: 0.5;
}

.time-grid-event__container--fixed--v_QRl {
  position: fixed;
  max-height: 300px;
  z-index: var(--draggable-event-z-index);
}

.time-grid-event__container--full-width--Vyi9A {
  width: calc(100% - calc(2 * var(--event-padding)));
}

.time-grid-event__container--hover--CEhcj {
  z-index: var(--hovered-event-z-index);
}

.time-grid-event__container--edited--izqpy {
  /* need important to override inline styles */
  z-index: var(--edited-event-z-index) !important;
  width: 100%;
  left: 0;
  cursor: move;
}

.time-grid-event__drag-handle--fPdhT {
  cursor: ns-resize;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 0.7rem;
  padding-bottom: 2px;
  height: 1rem;
  line-height: 1;
}

.time-grid-event__drag-handle--small--xn9nM {
  height: 0.7rem;
}

.agenda-shift--eS0Lu {
  flex: 1 1;
}

.agenda-shift__employments-container--sDJbB {
  overflow: hidden;
  flex: 1 1;
}

.agenda-shift__info-wrapper--eguUe {}

.chip--LP2Nn {
  border-radius: 0.6rem;
  padding: 0 0.4rem;
  align-self: flex-start;
  align-items: center;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.4;
}

:root {
  /* https://www.colorhexa.com/66CC66 */
  --shift-is-disabled: rgba(217, 220, 222, 1);
  --size-event-section-indent: 0.25rem;
  --width-border-event: 2px;
  --font-size-event: 0.7rem;
  --font-size-event-employment: 0.8rem;
}

.shift-day--pLbBe {
  --color-extra-employess-bg: #eee;
  --color-employees-chip: #01c58a;
  --color-employees-chip--underassigned: #a9353b;
  --color-employees-chip--overassigned: #f4a014;
}

.shift-day--pLbBe.droppable-is-enabled * {
  pointer-events: none !important;
}

.shift-day--pLbBe {
  display: flex;
  flex-direction: column;
  padding: 
    0.25rem 
    calc(2 * 0.25rem) 
    0;
  padding: 
    var(--size-event-section-indent) 
    calc(2 * var(--size-event-section-indent)) 
    0;
  border-left: 2px solid var(--color-bw-100);
  border-left: var(--width-border-event) solid var(--color-bw-100);
  overflow: hidden;
  text-align: left;
  font-size: 0.7rem;
  font-size: var(--font-size-event);
  line-height: 1.2;
}

.shift-day--draggable--FnxtX {
  cursor: move;
}

.shift-day__subheader--cGJ8M {
  display: flex;
  align-items: center;
  font-weight: var(--font-weight-normal);
}

.shift-day__multiday-icon--shc5J {
  margin-left: 0.25rem;
  margin-left: var(--size-event-section-indent);
}

.shift-day__header-position--uDVM9 {
  font-size: 0.8rem;
  font-weight: bold;
}

.shift-day__icons--n2776 {
  display: flex;
  align-items: center;
}

.shift-day__icon--qiPpQ {
  position: relative;
  padding: 0 0.25rem 0 0;
  padding: 0 var(--size-event-section-indent) 0 0;
  display: flex;
  align-items: baseline;
}

.shift-day__icon--qiPpQ span:first-child {
  font-weight: bold;
}

.shift-day__icon--qiPpQ:last-child {
  padding-right: 0;
}

.shift-day__icon-text--ucJDP {
  /* add really small space so that icon and text
   * are closer to each other.
   */
  padding-left: 2px;
  vertical-align: super;
}

.shift-day__chips--GyhPH {
  display: flex;
  flex-direction: row;
}

/* reset margin when container is used */
.shift-day__chips--GyhPH .shift-day__chips-chip--vnLdA,
.shift-day__chips--GyhPH .shift-day__icons--n2776 {
  margin-bottom: 0;
}

.shift-day__chips--GyhPH .shift-day__icons--n2776 {
  flex: 1 1;
  justify-content: flex-end;
  align-items: baseline;
}

.shift-day__chips-chip--vnLdA {
}

.shift-day__employees-chip--dtvSa {
  background-color: var(--color-employees-chip);
  margin-right: 0.2rem;
  flex-shrink: 0;
}
.shift-day__employees-chip--underassigned--y3CDd {
  background-color: var(--color-employees-chip--underassigned);
}

.shift-day__employees-chip--overassigned--RB1YA {
  background-color: var(--color-employees-chip--overassigned);
}

.shift-day__employees-chip--dtvSa.shift-day__employees-chip--full-line--KTWbE {
  margin-right: 100%;
}

.shift-day__employees--YIJ8_ {
  min-height: calc(var(--size-employee-avatar) + 0.25rem);
  min-height: calc(var(--size-employee-avatar) + var(--size-event-section-indent));
  width: 100%;
  position: relative;
  font-size: 0.8rem;
  font-size: var(--font-size-event-employment);
  display: grid;
  overflow: hidden;
}

.shift-day__employees--fullnames--Kzuai {
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.shift-day--agenda--_agvQ {
  padding: 0.25rem;
  padding: var(--size-event-section-indent);
}

.shift-day--agenda--_agvQ .shift-day__subheader--cGJ8M {
  width: 100%;
}

.shift-day__horizontal-group--fYVdk {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  margin-bottom: var(--size-event-section-indent);
  flex-wrap: wrap;
  margin-top: calc(0px - 0.25rem);
  margin-top: calc(0px - var(--size-event-section-indent));
}

.shift-day__horizontal-group--nowrap--DjjZS {
  flex-wrap: nowrap;
}
/* this is a hack to have margin for flex items if flex container wraps */
.shift-day__horizontal-group--fYVdk > * {
  margin-top: 0.25rem;
  margin-top: var(--size-event-section-indent);
}

.shift-day__horizontal-group--align-bottom--hQdao {
  align-items: flex-end;
}

.shift-day__horizontal-group--justify-left--YA3sz {
  justify-content: flex-start;
}
/* add margin to elements if they are aligned in flow */
.shift-day__horizontal-group--justify-left--YA3sz > * {
  margin-right: 0.25rem;
  margin-right: var(--size-event-section-indent);
}

.shift-day--is-drop-active--HrnGn {
  /* important is needed as we apply inline styles to shifts */
  background-color: var(--color-drop-active) !important;
}

.shift-day--is-drop-active--HrnGn > * {
  pointer-events: none;
}

.shift-day--is-drag-over-active--MOFEW {
  /* important is needed as we apply inline styles to shifts */
  background-color: var(--color-drag-over-active) !important;
}

:root {
  /* https://www.colorhexa.com/66CC66 */
  --shift-is-hovered: rgba(159, 223, 159, 1);
  --shift-is-enabled: rgba(205, 238, 205, 1);
  --shift-is-disabled: rgba(217, 220, 222, 1);
  --draggable-event-z-index: calc(var(--sticky-z-index) + 2);
}

.draggable-is-dragged,
.draggable--active {
  pointer-events: initial;
}

.droppable-is-enabled * {
  pointer-events: none;
}

.droppable-is-disabled {
  pointer-events: none;
}

.droppable-is-disabled * {
  pointer-events: none;
}

.droppable--active,
.droppable-is-enabled {
  background: rgba(205, 238, 205, 1) !important;
  background: var(--shift-is-enabled) !important;
  pointer-events: initial;
}

.draggable--handle {
  z-index: calc(var(--sticky-z-index) + 2);
  z-index: var(--draggable-event-z-index);
}

.droppable--hover,
.droppable-is-hovered.droppable-is-enabled {
  background-color: rgba(159, 223, 159, 1) !important;
  background-color: var(--shift-is-hovered) !important;
}

.droppable--active * {
  pointer-events: none;
}

.tags--vodkD {
  display: flex;
  overflow: hidden;
}

.tags__content--nchpn {
}

.agenda-month--ix3iK {
  --color-separator: #e0e0e0;
}

.agenda-month__cell--i81YY {
  min-height: 4em;
  padding: 0;
}

.agenda-month__cell-date--N8NHX {
  text-align: right;
  font-size: 0.9em;
  padding: 4px;
  font-weight: bold;
}

.agenda-month__cell-events--cRWkT {
  display: grid;
  grid-gap: inherit;
  gap: inherit;
  padding: 2px;
}

.agenda-month__separator--QjmG5 {
  height: 1px;
  width: 90%;
  border: 1px solid var(--color-separator);
  margin: auto;
  opacity: 1;
}

.agenda-month__notes--D3EGB {
  padding: 2px;
}

.agenda-month__week-number--YDib_ {
  align-items: flex-start;
}

.shift-preset-day--gr7rQ {
  background-color: var(--color-bw-50);
  border: 1px solid;
  font-weight: 700;
  color: var(--color-grey-900);
  margin-bottom: 5px;
  cursor: default;
}

.toggle-cell__toggle--KVKGz {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left;
  height: 100%;
}

.toggle-cell__toggle-text--TMPUg {
  flex: 1 1;
}

.toggle-cell__toggle-icon--FLBBP {
  margin-left: 10px;
}

.shift-month--p7Rzj {
  --color-shift-text: #757575;
  --color-shift-full: #01c58a;
  --color-shift-overassigned: #ffa000;
  --color-shift-underassigned: #f44337;
}

.shift-month--p7Rzj {
  border-left: 2px solid var(--color-bw-100);
  position: relative;
}

.shift-month--draggable--QDZZn {
  cursor: move;
}

.shift-month__icons-row--f9VQM {
  position: absolute;
  display: flex;
  width: 100%;
  height: 0.5rem;
  padding: 2px;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
  overflow: hidden;
}

.shift-month__icons--VCWeI {
  display: flex;
  flex-direction: row;
}

.shift-month__icon--nvj22 {
  font-size: 0.4rem;
  margin-right: 0.1rem;
}

.shift-month__employments-icon--TV1l0 {
  height: 0.4rem;
  width: 0.4rem;
  flex-shrink: 0;
  padding: 0.1rem;
  margin-right: 0.2rem;
  border-radius: 50%;
  background-color: var(--color-shift-full);
}

.shift-month__employments-icon--underassigned--cS5h6 {
  background-color: var(--color-shift-underassigned);
}

.shift-month__employments-icon--overassigned--_CwI9 {
  background-color: var(--color-shift-overassigned);
}

.shift-month--is-drop-active--tkLz6 {
  /* important is needed as we apply inline styles to shifts */
  background-color: var(--color-drop-active) !important;
}

.shift-month--is-drop-active--tkLz6 > * {
  pointer-events: none;
}

.shift-month--is-drag-over-active--mcd1F {
  /* important is needed as we apply inline styles to shifts */
  background-color: var(--color-drag-over-active) !important;
}

.position-cell--fCgB3 {
  border-width: 0 0 0 3px;
  border-style: solid;
  align-items: center;
  color: var(--color-text-calendar);
  text-align: left;
  padding: 0.5rem;
}

.position-cell__text--lBaBC { 
}

.position-cell__toggle--OhL0R { 
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left;
  height: 100%;
}

.position-cell__toggle-text--ELgdz {
  flex: 1 1;
}

.position-cell__toggle-icon--mkFTs {
  margin-left: 10px;
}

.delete-box--sHuog {
  position: fixed;
  bottom: 50px;
  width: 20%;
  left: 40%;
  min-width: 250px;
  height: 50px;
  border: 1px solid var(--color-error-700);
  color: var(--color-error-700);
  visibility: hidden;
  line-height: 50px;
  border-radius: 8px;
  background-color: var(--color-drop-active);
  text-align: center;
  z-index: 51;
  cursor: pointer;
}

.delete-box--drag-over-active--SuvTx {
  background-color: var(--color-drag-over-active);
}

.delete-box--drop-active--Ctapl {
  visibility: visible;
}

.delete-box--drop-active--Ctapl > * {
  pointer-events: none;
}

.absence-month--BGrwQ {
  --background-color-shift: hsla(0, 0%, 94%, .5);
  --border-shift-color: #d3d3d3;
}

.absence-month--BGrwQ { 
  background-color: var(--background-color-shift);
  border: 1px solid var(--border-shift-color);
}

.shift-month--LgRdm {
  --background-color-shift: hsla(0, 0%, 94%, .5);
  --border-shift-color: #d3d3d3;
}

.shift-month--LgRdm { 
  background-color: var(--background-color-shift);
  border: 1px solid var(--border-shift-color);
}

.employment-week--X8gxG {

}

.employment-week__grid--qrVnU {
  display: grid;
  grid-template-columns: var(--width-grid-label-column) repeat(7, 1fr);
}

.employment-week__shift--zrac0 {
  text-align: left; 
}

.employment-week__absence--FKUZu {
}

.employment-week__shift-time--kJkmx {
  font-weight: var(--font-weight-semibold);
}

.employment-week__cell--RxsTG {
  padding: 0 0.5rem;
  text-align: left;
  text-align: initial;
}

.list_day--jxXF8 {
  grid-template-columns: 1fr;
}

.list-day__absences--MPwWq {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.list-day__absences--one-column--FclHv {
  grid-template-columns: 1fr;
}

.list-day__absences-block--Uqjkc {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: inherit;
  gap: inherit;
  grid-template-rows: var(--height-cell) 1fr;
}

.list-day__shifts--BAjSp {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2fr;
}

.list-day__shifts--notes--oKNQA {
  grid-template-columns: 1fr 2fr 1fr 2fr 2fr;
}

.position-week--icmk9 {
  
}

.position-week__shift--v36Y0 {
  text-align: left;
  margin: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px dashed var(--color-bw-100);
}

.position-week__shift-header--mH3Mv {
  display: flex;
  flex-direction: row;
}

.position-week__shift-time--CTwZU {
  flex: 1 1;
  font-weight: bold;
}

.position-week__grid--VwESj {
  display: grid;
  grid-template-columns: var(--width-grid-label-column) repeat(7, 1fr);
}

.print--O3ENg {
  padding: 20px;
  display: inline-flex;
  align-items: stretch;
  flex-direction: column;
  min-width: 1600px;
  min-height: 900px;
}

.InternetExplorer--WexHD .print--O3ENg {
  min-width: 100% !important;
}

.print__header--TEvY0 {
  display: flex;
  padding-bottom: 20px;
  align-items: center;
}

.print__header-range--tqaDm {
  font-weight: bold;
  font-size: 1.1em;
  flex: 1 1;
}

.shift--draggable--FqHHj {
  cursor: move;
}

.shift--droppable--SiOj4 {}


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