/* _content/iZiPlanning.ServerApp/Components/Dialog/Customs/DialogContainerComponent.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
/* Styles isoles pour les dialogs personnalisees et asides */
/* Container principal */
.dialog-container[b-dzhbe8rk7o] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Backdrop (fond sombre) */
.dialog-backdrop[b-dzhbe8rk7o] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn-b-dzhbe8rk7o 0.2s ease-in;
}

/* Dialog centrale */
.dialog-center[b-dzhbe8rk7o] {
  align-items: center;
  justify-content: center;
}

.dialog-panel[b-dzhbe8rk7o] {
  position: relative;
  z-index: 1061;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  animation: slideDown-b-dzhbe8rk7o 0.3s ease-out;
}

/* Aside containers */
.dialog-aside[b-dzhbe8rk7o] {
  justify-content: flex-start;
}
.dialog-aside.dialog-aside-right[b-dzhbe8rk7o] {
  justify-content: flex-end;
}
.dialog-aside.dialog-aside-bottom[b-dzhbe8rk7o] {
  align-items: flex-end;
}
.dialog-aside.dialog-aside-top[b-dzhbe8rk7o] {
  align-items: flex-start;
}

/* Aside backdrop */
.dialog-aside-backdrop[b-dzhbe8rk7o] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn-b-dzhbe8rk7o 0.2s ease-in;
}

/* Aside panels */
.dialog-aside-panel[b-dzhbe8rk7o] {
  position: relative;
  z-index: 1061;
  background-color: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 90vw;
}

/* Aside animations selon position */
.dialog-aside-right .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideInRight-b-dzhbe8rk7o 0.3s ease-out;
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.dialog-aside-left .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideInLeft-b-dzhbe8rk7o 0.3s ease-out;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
}

.dialog-aside-top .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideInTop-b-dzhbe8rk7o 0.3s ease-out;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: auto;
  max-height: 90vh;
}

.dialog-aside-bottom .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideInBottom-b-dzhbe8rk7o 0.3s ease-out;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: auto;
  max-height: 90vh;
}

/* Header */
.dialog-header[b-dzhbe8rk7o] {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(215, 207, 231, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.dialog-header-content[b-dzhbe8rk7o] {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.dialog-title-icon[b-dzhbe8rk7o] {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dialog-title-group[b-dzhbe8rk7o] {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dialog-title[b-dzhbe8rk7o] {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.dialog-subtitle[b-dzhbe8rk7o] {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 400;
}

/* Body */
.dialog-body[b-dzhbe8rk7o] {
  padding: 0;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Close button */
.dialog-header .btn-close[b-dzhbe8rk7o] {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

/* Animations */
@keyframes fadeIn-b-dzhbe8rk7o {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut-b-dzhbe8rk7o {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideDown-b-dzhbe8rk7o {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp-b-dzhbe8rk7o {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-50px);
  }
}
@keyframes slideInRight-b-dzhbe8rk7o {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOutRight-b-dzhbe8rk7o {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes slideInLeft-b-dzhbe8rk7o {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOutLeft-b-dzhbe8rk7o {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slideInTop-b-dzhbe8rk7o {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideOutTop-b-dzhbe8rk7o {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes slideInBottom-b-dzhbe8rk7o {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideOutBottom-b-dzhbe8rk7o {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
/* Closing animations */
.is-closing .dialog-backdrop[b-dzhbe8rk7o],
.is-closing .dialog-aside-backdrop[b-dzhbe8rk7o] {
  animation: fadeOut-b-dzhbe8rk7o 0.25s ease-in forwards;
}
.is-closing .dialog-panel[b-dzhbe8rk7o] {
  animation: slideUp-b-dzhbe8rk7o 0.25s ease-in forwards;
}
.is-closing.dialog-aside-right .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideOutRight-b-dzhbe8rk7o 0.25s ease-in forwards;
}
.is-closing.dialog-aside-left .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideOutLeft-b-dzhbe8rk7o 0.25s ease-in forwards;
}
.is-closing.dialog-aside-top .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideOutTop-b-dzhbe8rk7o 0.25s ease-in forwards;
}
.is-closing.dialog-aside-bottom .dialog-aside-panel[b-dzhbe8rk7o] {
  animation: slideOutBottom-b-dzhbe8rk7o 0.25s ease-in forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .dialog-panel[b-dzhbe8rk7o] {
    width: 95% !important;
    max-width: 95% !important;
    margin: 0 auto;
  }
  .dialog-aside-panel[b-dzhbe8rk7o] {
    max-width: 95vw;
  }
}
/* _content/iZiPlanning.ServerApp/Components/FixedPositionSwitch/FixedPositionSwitch.razor.rz.scp.css */
.fixed-position-switch[b-69m7j9azmm] {
  display: inline-flex;
  align-items: center;
  background: #3d4657;
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
/* _content/iZiPlanning.ServerApp/Components/FixedPositionSwitch/FixedPositionSwitchOption.razor.rz.scp.css */
.fixed-position-switch-option[b-rcxt7gd9jw] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.fixed-position-switch-option.selected[b-rcxt7gd9jw] {
  background: var(--bs-primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.fixed-position-switch-option:hover:not(.selected):not(:disabled)[b-rcxt7gd9jw] {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}
.fixed-position-switch-option:disabled[b-rcxt7gd9jw] {
  cursor: not-allowed;
  opacity: 0.4;
}
.fixed-position-switch-option:focus-visible[b-rcxt7gd9jw] {
  outline: 2px solid color-mix(in srgb, var(--bs-primary) 50%, transparent);
  outline-offset: 2px;
}
/* _content/iZiPlanning.ServerApp/Components/Planning/RoundBadgeComponent.razor.rz.scp.css */
.round-badge[b-42785qnlra] {
  width: var(--round-badge-size);
  height: var(--round-badge-size);
  min-width: var(--round-badge-size);
  min-height: var(--round-badge-size);
  border-radius: 50%;
  background-color: var(--round-badge-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* _content/iZiPlanning.ServerApp/Components/Planning/TimeBadgeComponent.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
.time-badge[b-a3g28z4rti] {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  padding: 2px 4px;
  background-color: #808080;
  color: white;
  font-weight: 500;
  border-radius: 12px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.time-badge i[b-a3g28z4rti] {
  font-size: 0.5rem;
}
.time-badge span[b-a3g28z4rti], .time-badge p[b-a3g28z4rti] {
  font-size: 0.5rem;
  line-height: 6px;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}
.time-badge--working[b-a3g28z4rti] {
  background-color: #793EEF;
}
.time-badge--pause[b-a3g28z4rti] {
  background-color: #808080;
}
/* _content/iZiPlanning.ServerApp/Components/Skeleton/SkeletonComponent.razor.rz.scp.css */
.skeleton-block[b-thx29wkvn8] {
  position: relative;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}
.skeleton-block .skeleton-wave[b-thx29wkvn8] {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: skeleton-wave-b-thx29wkvn8 1.6s ease-in-out infinite;
}

@keyframes skeleton-wave-b-thx29wkvn8 {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* _content/iZiPlanning.ServerApp/Components/TimePicker/TimeDropdownPickerComponent.razor.rz.scp.css */
.time-dropdown-picker-wrapper[b-n47ew5je8e] {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}

.time-dropdown-picker-input[b-n47ew5je8e] {
  display: flex;
  align-items: center;
  padding: 0 0 0 0.5rem;
  border: 1px solid #D7CFE7;
  border-radius: 10px;
  background: #FFF;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  min-height: 38px;
}
.time-dropdown-picker-input:hover[b-n47ew5je8e] {
  border-color: #793EEF;
}
.time-dropdown-picker-input.is-open[b-n47ew5je8e] {
  border-color: #793EEF;
  box-shadow: 0 0 0 0.2rem rgba(121, 62, 239, 0.25);
}
.time-dropdown-picker-input.is-invalid[b-n47ew5je8e] {
  border-color: #EF4444;
}
.time-dropdown-picker-input.is-valid[b-n47ew5je8e] {
  border-color: #10B981;
}

.time-dropdown-picker-validation-icon[b-n47ew5je8e] {
  flex-shrink: 0;
  margin-right: 0.35rem;
}
.time-dropdown-picker-validation-icon.invalid[b-n47ew5je8e] {
  color: #EF4444;
}
.time-dropdown-picker-validation-icon.valid[b-n47ew5je8e] {
  color: #10B981;
}

.time-dropdown-picker-text-input[b-n47ew5je8e] {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--bs-body-color, #212529);
  cursor: text;
  padding: 0.375rem 0.5rem 0.375rem 0;
}

.time-dropdown-picker-clock-btn[b-n47ew5je8e] {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-left: 1px solid #D7CFE7;
  border-radius: 0 10px 10px 0;
  background: #F6F6F8;
  color: #94A3B8;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
  align-self: stretch;
}
.time-dropdown-picker-clock-btn:hover[b-n47ew5je8e] {
  background: #793EEF;
  color: #fff;
}

.time-dropdown-picker-popup[b-n47ew5je8e] {
  padding: 0.5rem;
}

.time-dropdown-picker-list[b-n47ew5je8e] {
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.time-dropdown-picker-slot[b-n47ew5je8e] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #FFF;
  color: var(--bs-body-color, #212529);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  transition: border-color 0.1s ease-in-out, background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}
.time-dropdown-picker-slot:hover:not(:disabled)[b-n47ew5je8e] {
  border-color: #793EEF;
  background: rgba(121, 62, 239, 0.08);
}
.time-dropdown-picker-slot.selected[b-n47ew5je8e] {
  border-color: #793EEF;
  background: rgba(121, 62, 239, 0.14);
  color: #793EEF;
}
.time-dropdown-picker-slot.preset:not(.selected):not(.excluded)[b-n47ew5je8e] {
  border-color: #C4B5FD;
}
.time-dropdown-picker-slot.excluded[b-n47ew5je8e] {
  border-color: #EF4444;
  background: repeating-linear-gradient(-45deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.1) 4px, #FFF 4px, #FFF 10px);
  color: #B91C1C;
  cursor: not-allowed;
}
.time-dropdown-picker-slot:disabled[b-n47ew5je8e] {
  opacity: 1;
}
/* _content/iZiPlanning.ServerApp/Components/TimePicker/TimePickerComponent.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
.time-picker-wrapper[b-2o6vtjwaqt] {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}

.time-picker-input[b-2o6vtjwaqt] {
  display: flex;
  align-items: center;
  padding: 0 0 0 0.5rem;
  border: 1px solid #D7CFE7;
  border-radius: 10px;
  background: #FFF;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  min-height: 38px;
}
.time-picker-input:hover[b-2o6vtjwaqt] {
  border-color: #793EEF;
}
.time-picker-input.is-open[b-2o6vtjwaqt] {
  border-color: #793EEF;
  box-shadow: 0 0 0 0.2rem rgba(121, 62, 239, 0.25);
}
.time-picker-input.is-invalid[b-2o6vtjwaqt] {
  border-color: #EF4444;
}
.time-picker-input.is-valid[b-2o6vtjwaqt] {
  border-color: #10B981;
}

.time-picker-validation-icon[b-2o6vtjwaqt] {
  flex-shrink: 0;
  margin-right: 0.35rem;
}
.time-picker-validation-icon.invalid[b-2o6vtjwaqt] {
  color: #EF4444;
}
.time-picker-validation-icon.valid[b-2o6vtjwaqt] {
  color: #10B981;
}

.time-picker-text-input[b-2o6vtjwaqt] {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--bs-body-color, #212529);
  cursor: text;
  padding: 0.375rem 0.5rem 0.375rem 0;
}

.time-picker-clock-btn[b-2o6vtjwaqt] {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-left: 1px solid #D7CFE7;
  border-radius: 0 10px 10px 0;
  background: #F6F6F8;
  color: #94A3B8;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
  align-self: stretch;
}
.time-picker-clock-btn:hover[b-2o6vtjwaqt] {
  background: #793EEF;
  color: #fff;
}
.time-picker-clock-btn:active[b-2o6vtjwaqt] {
  background: rgb(89.7129186603, 19.1387559809, 230.8612440191);
}

.time-picker-popup[b-2o6vtjwaqt] {
  padding: 0.75rem;
  user-select: none;
  min-width: 140px;
  margin: auto;
}

.time-picker-columns[b-2o6vtjwaqt] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.time-picker-sep[b-2o6vtjwaqt] {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.15rem;
  margin-bottom: 1.2rem;
}

.time-picker-col[b-2o6vtjwaqt] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.time-picker-col-label[b-2o6vtjwaqt] {
  font-size: 0.7rem;
  color: #94A3B8;
  text-align: center;
}

.time-picker-arrow[b-2o6vtjwaqt] {
  font-size: 0.85rem;
  color: #94A3B8;
  cursor: pointer;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s;
  line-height: 1;
}
.time-picker-arrow:hover[b-2o6vtjwaqt] {
  color: #793EEF;
  background: rgba(121, 62, 239, 0.12);
}
.time-picker-arrow:active[b-2o6vtjwaqt] {
  color: #fff;
  background: #793EEF;
}

.time-picker-drum[b-2o6vtjwaqt] {
  width: 52px;
  height: 48px;
  overflow: hidden;
  position: relative;
  border: 1px solid #D7CFE7;
  border-radius: 8px;
  background: #FFF;
  cursor: ns-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.time-picker-drum.excluded[b-2o6vtjwaqt] {
  border-color: #EF4444;
  background: repeating-linear-gradient(-45deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.08) 4px, #FFF 4px, #FFF 10px);
}

.time-picker-drum-item.current[b-2o6vtjwaqt] {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bs-body-color, #212529);
}
.time-picker-drum-item.current.excluded[b-2o6vtjwaqt] {
  color: #EF4444;
}
/* _content/iZiPlanning.ServerApp/Components/Tooltip/Tooltip.razor.rz.scp.css */
.tooltip-wrapper[b-rpagstw54x] {
    position: relative;
    display: inline-block;
/*    border-bottom: 1px dotted black;*/
    cursor: help;
}

span[b-rpagstw54x] {
    visibility: hidden;
    position: absolute;
    width: 200px;
    bottom: 80%;
    left: 50%;
    margin-left: -100px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

    span[b-rpagstw54x]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip-wrapper:hover span[b-rpagstw54x] {
    visibility: visible;
}
/* _content/iZiPlanning.ServerApp/Pages/Authentication/Shared/AccountLayout.razor.rz.scp.css */
.section-account[b-3g5xq2hkmw] {
  width: 100%;
  min-height: 100vh;
  background-image: url(../images/pictures/login-background.jpg);
  background-size: cover;
}
.section-account[b-3g5xq2hkmw]::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(254, 254, 254, 0.65);
}
/* _content/iZiPlanning.ServerApp/Pages/Employes/Components/SignPopupComponent.razor.rz.scp.css */
.signature-switch-container[b-nu89qxmudb] {
    width: 100%;
    user-select: none;
}

.hidden-checkbox[b-nu89qxmudb] {
    display: none;
}

.signature-switch[b-nu89qxmudb] {
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    background-color: #ddd;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    user-select: none;
    cursor: pointer;
}

.switch-background[b-nu89qxmudb] {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    pointer-events: none;
}

.switch-handle[b-nu89qxmudb] {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
}

    .switch-handle.relased[b-nu89qxmudb] {
        -moz-transition: left ease-in-out 0.25s;
        -o-transition: left ease-in-out 0.25s;
        -webkit-transition: left ease-in-out 0.25s;
        transition: left ease-in-out 0.25s;
    }

.switch-handle-cursor[b-nu89qxmudb] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: left 0.1s ease-out;
    pointer-events: none;
}

.signature-switch.signed[b-nu89qxmudb] {
    background-color: #4CAF50;
    color: #fff;
}

    .signature-switch.signed .switch-handle[b-nu89qxmudb] {
        left: auto !important;
        right:0;
        box-shadow: none;
    }
/* _content/iZiPlanning.ServerApp/Pages/Manage/Employees/AddEditEmployeePage.razor.rz.scp.css */
.tag-icon-item-template[b-s86zy88tvs] {
    display: flex;
    align-items: center;
    line-height:1;
}

.tag-icon-item-template .item-template-label[b-s86zy88tvs] {
    display: block;
}

.tag-icon-item-template .item-template-explain[b-s86zy88tvs] {
    font-size: 10px;
}

.tag-icon-template[b-s86zy88tvs] {
    display: flex;
    align-items: center;
    padding:2px;
    position: relative;
    border-radius: 16px;
}

[b-s86zy88tvs] .tag-template-close-btn {
    border: 0;
    border-radius: 3rem;
    box-shadow: none;
    font-weight: 600;
    padding: 0;
    width: 16px;
    height: 16px;
    margin: 0 0.25em 0 0.5em;
    opacity: 0.75;
    color:white !important;
}

[b-s86zy88tvs] .tag-template-close-btn:hover {
    opacity: 1;
}
/* _content/iZiPlanning.ServerApp/Pages/Manage/EmployeesPage.razor.rz.scp.css */
/*Breakpoints view*/
.color-employee[b-lse2vtuxvd] {
  --height: 25px;
  height: var(--height);
  border: 1px solid #d2d2d2;
}

.empty-color[b-lse2vtuxvd] {
  width: 100%;
  position: relative;
  display: inline-block;
  border: 1px solid #dc3545;
}
.empty-color[b-lse2vtuxvd]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(20deg, transparent calc(50% - 1px), #dc3545 calc(50% - 0px), #dc3545 calc(50% + 0px), transparent calc(50% + 1px));
}

.store-bulle[b-lse2vtuxvd] {
  background-color: #ecf0f1;
  padding: 4px 12px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  white-space: nowrap;
}

[b-lse2vtuxvd] .employes-grid.dxbl-grid .dxbl-grid-table > tbody > tr > td {
  border-left-width: 0px;
}

[b-lse2vtuxvd] .employes-grid.dxbl-grid .dxbl-grid-table > thead > tr > th {
  border-left-width: 0px;
}
/* _content/iZiPlanning.ServerApp/Pages/Manage/StoresPage.razor.rz.scp.css */
.card-img-top[b-9yxyhapc7z] {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
/* _content/iZiPlanning.ServerApp/Pages/Planning/Components/StackPlanning/AbsenceCardComponent.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
.w-max-1400p[b-16yhy2yg2k] {
  max-width: 1400px;
}

.absence-card[b-16yhy2yg2k] {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  padding: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  margin: 0;
}
.absence-card[b-16yhy2yg2k]:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0.1) 6px, rgba(255, 255, 255, 0.1) 12px);
  content: " ";
  pointer-events: none;
}
.absence-card.read-only-event[b-16yhy2yg2k] {
  filter: saturate(0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.15);
}
.absence-card .card-body[b-16yhy2yg2k] {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 0.75rem 0.25rem;
}
.absence-card .card-body .icon[b-16yhy2yg2k] {
  padding-right: 0.5rem;
  font-size: 1.2rem;
}
.absence-card .card-body .reason[b-16yhy2yg2k] {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.absence-card .nb-hour[b-16yhy2yg2k] {
  flex-shrink: 0;
}
.absence-card[b-16yhy2yg2k]  .input-absence.dxbl-text-edit {
  width: 65px;
  background-color: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}
.absence-card[b-16yhy2yg2k]  .input-absence.dxbl-text-edit .dxbl-text-edit-input {
  background-color: rgba(0, 0, 0, 0.15);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 12px;
  padding: 2px 6px;
  text-align: center;
}
.absence-card.absence-multi-days[b-16yhy2yg2k] {
  display: grid;
  grid-template-rows: 1fr auto;
}
.absence-card.absence-multi-days .card-body[b-16yhy2yg2k] {
  height: auto;
  padding: 0.5rem 0.25rem;
}
.absence-card.absence-multi-days .absence-multi-days-inputs[b-16yhy2yg2k] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 0.25rem;
  padding: 0.5rem 0.25rem;
}
.absence-card.absence-multi-days .absence-multi-days-inputs .day-input[b-16yhy2yg2k] {
  margin: auto;
}
.absence-card.absence-multi-days .absence-multi-days-inputs .day-input[b-16yhy2yg2k]  .input-absence.dxbl-text-edit {
  width: 65px;
  background-color: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}
.absence-card.absence-multi-days .absence-multi-days-inputs .day-input[b-16yhy2yg2k]  .input-absence.dxbl-text-edit .dxbl-text-edit-input {
  background-color: rgba(0, 0, 0, 0.15);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 12px;
  padding: 2px 6px;
  text-align: center;
}

.absence-card-row .card-body[b-16yhy2yg2k] {
  gap: 0.5rem;
  min-height: 100%;
}
/* _content/iZiPlanning.ServerApp/Pages/Planning/Components/StackPlanning/EventComponent.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
.w-max-1400p[b-u6ppssovzz] {
  max-width: 1400px;
}

.shift-card[b-u6ppssovzz],
.partial-absence-card[b-u6ppssovzz] {
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0.5rem;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  margin: 0;
}
.shift-card > div[b-u6ppssovzz],
.partial-absence-card > div[b-u6ppssovzz] {
  padding: 0.25rem 0rem 0.25rem 0.75rem;
}
.shift-card .icon[b-u6ppssovzz],
.partial-absence-card .icon[b-u6ppssovzz] {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.shift-card .text[b-u6ppssovzz],
.partial-absence-card .text[b-u6ppssovzz] {
  min-width: 0;
}
.shift-card .text .subject[b-u6ppssovzz],
.shift-card .text .store[b-u6ppssovzz],
.partial-absence-card .text .subject[b-u6ppssovzz],
.partial-absence-card .text .store[b-u6ppssovzz] {
  font-weight: 600;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shift-card .text .subject[b-u6ppssovzz],
.partial-absence-card .text .subject[b-u6ppssovzz] {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 0px 5px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.shift-card .text .store[b-u6ppssovzz],
.partial-absence-card .text .store[b-u6ppssovzz] {
  font-size: 0.5rem;
}
.shift-card .text .stamps[b-u6ppssovzz],
.partial-absence-card .text .stamps[b-u6ppssovzz] {
  font-size: 0.75rem;
}
.shift-card .comment-ico[b-u6ppssovzz],
.partial-absence-card .comment-ico[b-u6ppssovzz] {
  position: absolute;
  bottom: 2px;
  right: 8px;
}
.shift-card.new-appointment[b-u6ppssovzz],
.partial-absence-card.new-appointment[b-u6ppssovzz] {
  animation: pulseGlow 0.8s ease-out;
}
.shift-card.read-only-event[b-u6ppssovzz],
.partial-absence-card.read-only-event[b-u6ppssovzz] {
  filter: saturate(0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.15);
}
.shift-card .menu-overlay[b-u6ppssovzz],
.partial-absence-card .menu-overlay[b-u6ppssovzz] {
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  -moz-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.shift-card .menu-overlay:hover[b-u6ppssovzz],
.partial-absence-card .menu-overlay:hover[b-u6ppssovzz] {
  opacity: 1;
}
.shift-card.other-store-event[b-u6ppssovzz],
.partial-absence-card.other-store-event[b-u6ppssovzz] {
  background-image: linear-gradient(#808080, #808080);
  background-size: 32px 32px;
  opacity: 0.75;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.shift-card.non-assigned[b-u6ppssovzz],
.partial-absence-card.non-assigned[b-u6ppssovzz] {
  opacity: 0.75;
  border: dashed 2px #EF4444;
  padding: 0 0.4rem;
}
.shift-card.non-assigned .card-body .time[b-u6ppssovzz],
.shift-card.non-assigned .card-body .duration[b-u6ppssovzz],
.partial-absence-card.non-assigned .card-body .time[b-u6ppssovzz],
.partial-absence-card.non-assigned .card-body .duration[b-u6ppssovzz] {
  display: none;
}
.shift-card.non-assigned .card-body .duration[b-u6ppssovzz],
.partial-absence-card.non-assigned .card-body .duration[b-u6ppssovzz] {
  font-size: 16px;
  color: dimgray;
  font-weight: bold;
}

.partial-absence-card[b-u6ppssovzz] {
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0.1) 6px, rgba(255, 255, 255, 0.1) 12px);
}

.button-opacity[b-u6ppssovzz] {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card-body:hover .button-opacity[b-u6ppssovzz] {
  opacity: 1;
}

@media (min-width: 1200px) and (max-width: 1919.98px) {
  .shift-card[b-u6ppssovzz],
  .partial-absence-card[b-u6ppssovzz] {
    padding: 0.2rem 0.4rem;
  }
  .shift-card > div[b-u6ppssovzz],
  .partial-absence-card > div[b-u6ppssovzz] {
    padding: 0.25rem 0rem 0.25rem 0.5rem;
  }
  .shift-card .icon[b-u6ppssovzz],
  .partial-absence-card .icon[b-u6ppssovzz] {
    padding-right: 0.65rem;
    font-size: 1.25rem;
  }
  .shift-card .text .subject[b-u6ppssovzz],
  .partial-absence-card .text .subject[b-u6ppssovzz] {
    font-size: 0.9rem;
    padding: 0px 4px;
  }
  .shift-card .text .stamps[b-u6ppssovzz],
  .partial-absence-card .text .stamps[b-u6ppssovzz] {
    font-size: 0.6rem;
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .shift-card[b-u6ppssovzz],
  .partial-absence-card[b-u6ppssovzz] {
    padding: 0.2rem 0.25rem;
  }
  .shift-card > div[b-u6ppssovzz],
  .partial-absence-card > div[b-u6ppssovzz] {
    padding: 0.25rem 0rem 0.25rem 0rem;
  }
  .shift-card .icon[b-u6ppssovzz],
  .partial-absence-card .icon[b-u6ppssovzz] {
    padding-right: 0.3rem;
    font-size: 1rem;
  }
  .shift-card .text .subject[b-u6ppssovzz],
  .partial-absence-card .text .subject[b-u6ppssovzz] {
    font-size: 0.75rem;
    padding: 0px 2px;
  }
  .shift-card .text .stamps[b-u6ppssovzz],
  .partial-absence-card .text .stamps[b-u6ppssovzz] {
    font-size: 0.5rem;
  }
}
@media (max-width: 767px) {
  .shift-card[b-u6ppssovzz],
  .partial-absence-card[b-u6ppssovzz] {
    padding: 0.15rem 0.2rem;
  }
  .shift-card > div[b-u6ppssovzz],
  .partial-absence-card > div[b-u6ppssovzz] {
    padding: 0.2rem 0rem 0.2rem 0rem;
  }
  .shift-card .icon[b-u6ppssovzz],
  .partial-absence-card .icon[b-u6ppssovzz] {
    padding-right: 0.25rem;
    font-size: 0.9rem;
  }
  .shift-card .text .subject[b-u6ppssovzz],
  .partial-absence-card .text .subject[b-u6ppssovzz] {
    font-size: 0.65rem;
    padding: 0px 2px;
  }
  .shift-card .text .stamps[b-u6ppssovzz],
  .partial-absence-card .text .stamps[b-u6ppssovzz] {
    font-size: 0.45rem;
  }
}
/* _content/iZiPlanning.ServerApp/Pages/Planning/Components/StackPlanning/RessourceHeaderComponent.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
.w-max-1400p[b-auf6jqolfc] {
  max-width: 1400px;
}

.scheduler-ressource[b-auf6jqolfc] {
  display: flex;
  position: relative;
}
.scheduler-ressource .ressource-image[b-auf6jqolfc] {
  height: 38px;
  width: 38px;
  flex-basis: 38px;
  flex-grow: 0;
  flex-shrink: 0;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  margin-right: 0.5rem;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.scheduler-ressource .ressource-image .letter[b-auf6jqolfc] {
  font-weight: 600;
  font-size: 1.4rem;
  color: white;
  line-height: 1;
}
.scheduler-ressource .ressource-image[b-auf6jqolfc]  .ressource-info-btn {
  position: absolute;
  height: 38px;
  width: 38px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  color: white;
  opacity: 0;
  -moz-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.scheduler-ressource .ressource-content[b-auf6jqolfc] {
  min-width: 0;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.scheduler-ressource .ressource-content .ressource-name[b-auf6jqolfc] {
  font-weight: 700;
  line-height: 1;
  font-size: 1.1rem;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.scheduler-ressource .ressource-content .ressource-occupation[b-auf6jqolfc] {
  font-weight: 600;
  font-size: 0.8rem;
  position: relative;
}
.scheduler-ressource .ressource-content .ressource-occupation .ressource-occupation-value[b-auf6jqolfc] {
  opacity: 1;
  -moz-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.scheduler-ressource .ressource-content .ressource-occupation .ressource-occupation-progress[b-auf6jqolfc] {
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  -moz-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.scheduler-ressource .ressource-content .ressource-occupation .ressource-occupation-progress .progress-value[b-auf6jqolfc] {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  top: 0;
  color: white;
  font-size: 0.6rem;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.scheduler-ressource .ressource-complement[b-auf6jqolfc] {
  position: absolute;
  top: -5px;
  right: -2px;
}
.scheduler-ressource.unassigned[b-auf6jqolfc] {
  height: 100%;
  color: #95a5a6;
  justify-content: center;
  font-weight: 700;
}
.scheduler-ressource:hover .ressource-image[b-auf6jqolfc]  .ressource-info-btn {
  opacity: 1;
}
.scheduler-ressource:hover .ressource-content .ressource-occupation .ressource-occupation-value[b-auf6jqolfc] {
  opacity: 0;
}
.scheduler-ressource:hover .ressource-content .ressource-occupation .ressource-occupation-progress[b-auf6jqolfc] {
  opacity: 1;
}

@media (min-width: 1200px) and (max-width: 1919.98px) {
  .scheduler-ressource .ressource-image[b-auf6jqolfc] {
    height: 36px;
    width: 36px;
    flex-basis: 36px;
  }
  .scheduler-ressource .ressource-image .letter[b-auf6jqolfc] {
    font-size: 1.3rem;
  }
  .scheduler-ressource .ressource-image[b-auf6jqolfc]  .ressource-info-btn {
    height: 36px;
    width: 36px;
  }
  .scheduler-ressource .ressource-content[b-auf6jqolfc] {
    min-width: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .scheduler-ressource .ressource-content .ressource-name[b-auf6jqolfc] {
    font-weight: 600;
    font-size: 1rem;
  }
  .scheduler-ressource .ressource-content .ressource-occupation[b-auf6jqolfc] {
    font-size: 0.75rem;
  }
  .scheduler-ressource .ressource-content .ressource-occupation .ressource-occupation-progress .progress-value[b-auf6jqolfc] {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .scheduler-ressource .ressource-image[b-auf6jqolfc] {
    height: 34px;
    width: 34px;
    flex-basis: 34px;
  }
  .scheduler-ressource .ressource-image .letter[b-auf6jqolfc] {
    font-size: 1.1rem;
  }
  .scheduler-ressource .ressource-image[b-auf6jqolfc]  .ressource-info-btn {
    height: 34px;
    width: 34px;
  }
  .scheduler-ressource .ressource-content .ressource-name[b-auf6jqolfc] {
    font-size: 0.9rem;
  }
  .scheduler-ressource .ressource-content .ressource-occupation[b-auf6jqolfc] {
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .scheduler-ressource .ressource-image[b-auf6jqolfc] {
    height: 30px;
    width: 30px;
    flex-basis: 30px;
    margin-right: 0.3rem;
  }
  .scheduler-ressource .ressource-image .letter[b-auf6jqolfc] {
    font-size: 0.95rem;
  }
  .scheduler-ressource .ressource-image[b-auf6jqolfc]  .ressource-info-btn {
    height: 28px;
    width: 28px;
  }
  .scheduler-ressource .ressource-content .ressource-name[b-auf6jqolfc] {
    font-size: 0.8rem;
  }
  .scheduler-ressource .ressource-content .ressource-occupation[b-auf6jqolfc] {
    font-size: 0.6rem;
  }
}
/* _content/iZiPlanning.ServerApp/Pages/Planning/PlanningBetaPage.razor.rz.scp.css */
@charset "UTF-8";
/* ============================================================
   PlanningBetaPage — Styles
   ============================================================ */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
@keyframes planning-skeleton-shimmer-b-qixgnix1wi {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.planning.planning-loading[b-qixgnix1wi] {
  cursor: wait;
}
.planning.planning-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-btn {
  pointer-events: none;
  opacity: 0.5;
}
.planning.planning-loading .disable-on-loading.btn-sm[b-qixgnix1wi] {
  pointer-events: none;
  opacity: 0.5;
}
.planning.planning-loading[b-qixgnix1wi]  .show-planning-loading-skeleton {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  border-color: #e0e0e8;
}
.planning.planning-loading[b-qixgnix1wi]  .show-planning-loading-skeleton > * {
  opacity: 0;
  border-color: #e0e0e8;
}
.planning.planning-loading[b-qixgnix1wi]  .show-planning-loading-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e0e0e8 25%, #ebebf2 50%, #e0e0e8 75%);
  background-size: 200% 100%;
  animation: planning-skeleton-shimmer-b-qixgnix1wi 1.4s ease-in-out infinite;
  /*border-radius: 4px;*/
}
.planning.planning-loading[b-qixgnix1wi]  .show-planning-loading-overlay {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  border-color: #e0e0e8;
}
.planning.planning-loading[b-qixgnix1wi]  .show-planning-loading-overlay > * {
  opacity: 0;
}
.planning.planning-loading[b-qixgnix1wi]  .show-planning-loading-overlay::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: #e0e0e8;
}

.planning.page-loading[b-qixgnix1wi] {
  cursor: wait;
}
.planning.page-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-btn {
  pointer-events: none;
  opacity: 0.5;
}
.planning.page-loading .btn-sm[b-qixgnix1wi] {
  pointer-events: none;
  opacity: 0.5;
}
.planning.page-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-tag-box,
.planning.page-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-text-edit {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.planning.page-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-tag-box > *,
.planning.page-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-text-edit > * {
  opacity: 0;
}
.planning.page-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-tag-box::after,
.planning.page-loading[b-qixgnix1wi]  .disable-on-loading.dxbl-text-edit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e0e0e8 25%, #ebebf2 50%, #e0e0e8 75%);
  background-size: 200% 100%;
  animation: planning-skeleton-shimmer-b-qixgnix1wi 1.4s ease-in-out infinite;
  /*border-radius: 4px;*/
}

.planning-status-track__node[b-qixgnix1wi] {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.15s ease;
}
.planning-status-track__node.node--past[b-qixgnix1wi] {
  width: 22px;
  height: 22px;
  background: var(--bs-success);
  color: #fff;
  font-size: 0.65rem;
}
.planning-status-track__node.node--current[b-qixgnix1wi] {
  width: 30px;
  height: 30px;
  background: var(--bs-primary);
  color: #fff;
  font-size: 0.8rem;
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.25);
}
.planning-status-track__node.node--future[b-qixgnix1wi] {
  width: 22px;
  height: 22px;
  background: var(--bs-light);
  color: var(--bs-secondary);
  border: 1px dashed var(--bs-secondary);
  font-size: 0.65rem;
}
.planning-status-track__line[b-qixgnix1wi] {
  flex: 1;
  height: 2px;
  min-width: 12px;
}
.planning-status-track__line.line--done[b-qixgnix1wi] {
  background: var(--bs-success);
}
.planning-status-track__line.line--future[b-qixgnix1wi] {
  background: repeating-linear-gradient(to right, var(--bs-secondary) 0, var(--bs-secondary) 4px, transparent 4px, transparent 8px);
}

.toolbar-beta[b-qixgnix1wi] {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.toolbar-beta.is-stick[b-qixgnix1wi], .toolbar-beta-stick[b-qixgnix1wi] {
  background: #D8D8DE;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
}
.toolbar-beta__gran-active[b-qixgnix1wi] {
  background-color: #7C4DFF;
  color: #FFF;
  font-weight: 600;
  border-color: #7C4DFF;
}
.toolbar-beta__gran-active:hover[b-qixgnix1wi], .toolbar-beta__gran-active:focus[b-qixgnix1wi] {
  background-color: rgb(93.9730337079, 36.2, 255);
  border-color: rgb(93.9730337079, 36.2, 255);
  color: #FFF;
}
.toolbar-beta__date-badge[b-qixgnix1wi] {
  background-color: #7C4DFF;
  border-color: #7C4DFF;
  color: #FFF;
  white-space: nowrap;
}
.toolbar-beta__date-badge:hover[b-qixgnix1wi], .toolbar-beta__date-badge:focus[b-qixgnix1wi] {
  background-color: rgb(93.9730337079, 36.2, 255);
  border-color: rgb(93.9730337079, 36.2, 255);
  color: #FFF;
}
.toolbar-beta__icon-btn[b-qixgnix1wi] {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.toolbar-beta__calendar-overlay[b-qixgnix1wi] {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.toolbar-beta__calendar-popup[b-qixgnix1wi] {
  position: absolute;
  top: 90px;
  left: 16px;
  z-index: 1001;
}
.toolbar-beta__date-flyout-overlay[b-qixgnix1wi] {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.toolbar-beta__date-flyout[b-qixgnix1wi] {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  min-width: 300px;
  white-space: nowrap;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
.toolbar-beta__date-flyout[b-qixgnix1wi]::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 0, 0, 0.12);
}
.toolbar-beta__date-flyout[b-qixgnix1wi]::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}
/* _content/iZiPlanning.ServerApp/Pages/Planning/Vues/TimelineVue.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
.w-max-1400p[b-0we90o787v] {
  max-width: 1400px;
}

.planning-timeline[b-0we90o787v] {
  overflow: visible;
}
.planning-timeline .planning-timeline-day[b-0we90o787v] {
  border-bottom: 1px solid rgb(226, 232, 240);
  background-color: #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
.planning-timeline .planning-timeline-day:last-child[b-0we90o787v] {
  border-bottom: 0;
}
.planning-timeline .planning-timeline-date[b-0we90o787v] {
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgb(226, 232, 240);
  text-align: center;
  font-weight: 700;
  background-color: #fff;
}
.planning-timeline .planning-timeline-daily-comment[b-0we90o787v] {
  border-bottom: 1px solid rgb(226, 232, 240);
  background-color: #fff;
  padding: 0.15rem 0.75rem;
}
.planning-timeline .planning-timeline-hours[b-0we90o787v],
.planning-timeline .planning-timeline-row[b-0we90o787v] {
  display: grid;
  grid-template-columns: 180px minmax(760px, 1fr) 50px;
}
.planning-timeline .planning-timeline-hours[b-0we90o787v] {
  min-height: 44px;
  border-bottom: 1px solid rgb(226, 232, 240);
  background-color: #fff;
}
.planning-timeline .planning-timeline-employee-spacer-actions[b-0we90o787v] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.planning-timeline .planning-timeline-employee-spacer[b-0we90o787v],
.planning-timeline .planning-timeline-total-spacer[b-0we90o787v],
.planning-timeline .planning-timeline-employee[b-0we90o787v],
.planning-timeline .planning-timeline-total[b-0we90o787v] {
  border-right: 1px solid rgb(226, 232, 240);
}
.planning-timeline .planning-timeline-total-spacer[b-0we90o787v],
.planning-timeline .planning-timeline-total[b-0we90o787v] {
  border-left: 1px solid rgb(226, 232, 240);
  border-right: 0;
}
.planning-timeline .planning-timeline-hours-track[b-0we90o787v],
.planning-timeline .planning-timeline-lane[b-0we90o787v] {
  position: relative;
  min-width: 760px;
}
.planning-timeline .planning-timeline-hours-track .planning-timeline-grid .planning-timeline-grid-cell:not(.is-hour)[b-0we90o787v] {
  border-left: none;
}
.planning-timeline .planning-timeline-grid[b-0we90o787v] {
  display: flex;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.planning-timeline .planning-timeline-grid .planning-timeline-grid-cell[b-0we90o787v] {
  cursor: cell;
  flex: 1;
  border-left: 1px solid rgba(226, 232, 240, 0.25);
}
.planning-timeline .planning-timeline-grid .planning-timeline-grid-cell.is-hour[b-0we90o787v] {
  border-left-color: rgb(226, 232, 240);
}
.planning-timeline .planning-timeline-grid .planning-timeline-grid-cell:first-child[b-0we90o787v] {
  border-left: 0;
}
.planning-timeline .planning-timeline-lane[data-drop-allowed=true] .planning-timeline-grid[b-0we90o787v] {
  pointer-events: auto;
}
.planning-timeline .planning-timeline-lane[data-drop-allowed=true] .planning-timeline-grid .planning-timeline-grid-cell:hover[b-0we90o787v] {
  background-color: rgba(0, 0, 0, 0.04);
}
.planning-timeline .planning-timeline-lane.planning-timeline-drawing .planning-timeline-grid[b-0we90o787v] {
  pointer-events: none;
}
.planning-timeline .planning-timeline-hour[b-0we90o787v] {
  position: absolute;
  top: 4px;
  transform: translateX(4px);
  white-space: nowrap;
  color: #172033;
}
.planning-timeline .planning-timeline-row[b-0we90o787v] {
  min-height: 50px;
  border-bottom: 1px solid rgb(226, 232, 240);
}
.planning-timeline .planning-timeline-row:last-child[b-0we90o787v] {
  border-bottom: 0;
}
.planning-timeline .hidden-employees-tab[b-0we90o787v] {
  display: flex;
  align-items: center;
  z-index: 0;
  gap: 6px;
  width: 180px;
  padding: 16px 12px 8px 12px;
  margin-top: -8px;
  background: rgba(245, 158, 11, 0.5);
  border: 1px solid #F59E0B;
  border-radius: 0 0 10px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #95a5a6;
  cursor: pointer;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  user-select: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.planning-timeline .planning-timeline-employee[b-0we90o787v] {
  display: block;
  padding: 6px 4px;
  overflow: hidden;
}
.planning-timeline .planning-timeline-lane[b-0we90o787v] {
  min-height: 48px;
  overflow: hidden;
}
.planning-timeline .planning-timeline-lane[data-drop-allowed=true][b-0we90o787v] {
  cursor: crosshair;
}
.planning-timeline .planning-timeline-lane.non-assigned-cell[b-0we90o787v] {
  background-color: #f7f7f7;
  min-height: calc(var(--overlap-lane-count, 1) * 48px);
  overflow: visible;
}
.planning-timeline .planning-timeline-lane.non-assigned-cell .planning-timeline-event-wrapper[b-0we90o787v] {
  top: calc(var(--lane-index, 0) * 48px + 1px);
  height: 46px;
  bottom: auto;
}
.planning-timeline .planning-timeline-lane.planning-timeline-drop-target[b-0we90o787v] {
  outline: 2px dashed rgba(121, 62, 239, 0.75);
  outline-offset: -3px;
  background-color: rgba(121, 62, 239, 0.08);
}
.planning-timeline .planning-timeline-draw-ghost[b-0we90o787v] {
  position: absolute;
  top: 1px;
  bottom: 1px;
  pointer-events: none;
  border-radius: 4px;
  background-color: rgba(121, 62, 239, 0.22);
  border: 2px dashed rgba(121, 62, 239, 0.75);
  z-index: 50;
}
.planning-timeline .planning-timeline-new-event[b-0we90o787v] {
  position: absolute;
  top: 1px;
  bottom: 1px;
  pointer-events: none;
  border-radius: 4px;
  background-color: rgba(121, 62, 239, 0.18);
  border: 2px solid rgba(121, 62, 239, 0.6);
  z-index: 50;
}
.planning-timeline .planning-timeline-total[b-0we90o787v] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  font-size: 0.675rem;
  font-weight: 400;
  background-color: #fff;
}
.planning-timeline .planning-timeline-event-wrapper[b-0we90o787v] {
  position: absolute;
  top: 0px;
  bottom: 0px;
  min-width: 28px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.planning-timeline .planning-timeline-event-wrapper.scheduler-cell-day:not(.absence-all-day)[b-0we90o787v] {
  padding: 1px 2px;
  display: block;
}
.planning-timeline .planning-timeline-event-wrapper.absence-all-day[b-0we90o787v] {
  top: 0px;
  bottom: 0px;
  grid-column: auto;
}
.planning-timeline .planning-timeline-event-wrapper.planning-timeline-event-editable[b-0we90o787v] {
  cursor: grab;
}
.planning-timeline .planning-timeline-event-wrapper.planning-timeline-dragging[b-0we90o787v] {
  z-index: 1000;
  opacity: 0.85;
  cursor: grabbing;
}
.planning-timeline .planning-timeline-event-wrapper.planning-timeline-event-readonly[b-0we90o787v] {
  cursor: not-allowed;
  filter: saturate(0.75);
}
.planning-timeline .planning-timeline-event-wrapper.planning-timeline-event-ghost[b-0we90o787v] {
  background-color: #d6d6d6;
  border: 2px solid #a0a0a0;
  border-radius: 4px;
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.planning-timeline .planning-timeline-event-wrapper[b-0we90o787v]  .shift-card,
.planning-timeline .planning-timeline-event-wrapper[b-0we90o787v]  .partial-absence-card,
.planning-timeline .planning-timeline-event-wrapper[b-0we90o787v]  .absence-card {
  height: 100%;
  width: 100%;
}
.planning-timeline .planning-timeline-resize[b-0we90o787v] {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  z-index: 2;
}
.planning-timeline .planning-timeline-resize[b-0we90o787v]::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 50%;
  opacity: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0, 0, 0, 0.35);
  transform: translateY(-50%);
  transition: opacity 0.15s ease-in-out;
}
.planning-timeline .planning-timeline-event-editable:hover .planning-timeline-resize[b-0we90o787v]::after {
  opacity: 1;
}
.planning-timeline .planning-timeline-resize-start[b-0we90o787v] {
  left: 4px;
  cursor: ew-resize;
}
.planning-timeline .planning-timeline-resize-start[b-0we90o787v]::after {
  left: 1px;
}
.planning-timeline .planning-timeline-resize-end[b-0we90o787v] {
  right: 4px;
  cursor: ew-resize;
}
.planning-timeline .planning-timeline-resize-end[b-0we90o787v]::after {
  right: 1px;
}
.planning-timeline .planning-timeline-closed-zone[b-0we90o787v] {
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.06);
  z-index: 0;
}
.planning-timeline .planning-timeline-pending-absence[b-0we90o787v] {
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  border: 2px dashed #dc3545;
  border-radius: 3px;
  background-image: repeating-linear-gradient(-45deg, rgba(220, 53, 69, 0.15) 0px, rgba(220, 53, 69, 0.15) 4px, transparent 4px, transparent 10px);
}
.planning-timeline .planning-timeline-pending-absence .planning-timeline-pending-absence-label[b-0we90o787v] {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #dc3545;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1920px) {
  .planning-timeline .planning-timeline-lane[b-0we90o787v] {
    min-height: 56px;
  }
  .planning-timeline .planning-timeline-lane.non-assigned-cell[b-0we90o787v] {
    min-height: calc(var(--overlap-lane-count, 1) * 56px);
  }
  .planning-timeline .planning-timeline-lane.non-assigned-cell .planning-timeline-event-wrapper[b-0we90o787v] {
    top: calc(var(--lane-index, 0) * 56px + 1px);
    height: 54px;
  }
}
/* _content/iZiPlanning.ServerApp/Pages/Publics/HomePage.razor.rz.scp.css */
#hero[b-0xhw9pu4ve] {
    position: relative;

}

    #hero[b-0xhw9pu4ve]::before {
        content: "";
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background-image: url(../images/pictures/login-background.jpg);
        background-size: cover;
        opacity: 0.75;
        z-index: 0;
    }

    #hero .container[b-0xhw9pu4ve] {
        z-index: 1;
        
    }

.izi-card[b-0xhw9pu4ve] {
    background-color: rgba(255,255,255,0.8);
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
}

#features[b-0xhw9pu4ve] {
    background-color: #5C1E60;
}
/* _content/iZiPlanning.ServerApp/Shared/Components/Bases/EditFormPageBase.razor.rz.scp.css */
/* _content/iZiPlanning.ServerApp/Shared/Components/Bases/PageBase.razor.rz.scp.css */
/* _content/iZiPlanning.ServerApp/Shared/Components/Bases/PopupBase.razor.rz.scp.css */
/* _content/iZiPlanning.ServerApp/Shared/Layouts/DefaultLayout.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Skeleton     */
/********************/
/********************/
/*     Colors      */
/********************/
/********************/
/*     Indexes      */
/********************/
/**************************/
/*          INPUTS        */
/*          INPUTS        */
/**************************/
/**************************/
/*          BUTTONS       */
/*          BUTTONS        */
/***************************/
/************************/
/*          GRIDS       */
/*          GRIDS       */
/************************/
#next-update[b-y0ubmrex6u] {
  position: fixed;
  top: 0;
  z-index: 999999;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
  border-radius: 0 0 12px 12px;
  max-width: 475px;
}
#next-update .btn-close[b-y0ubmrex6u] {
  position: absolute;
  top: 10px;
  right: 10px;
}

.env-info[b-y0ubmrex6u] {
  position: fixed;
  top: 0;
  z-index: 99999999;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  padding: 4px 16px 6px 16px;
  border-radius: 0 0 12px 12px;
}
.env-info.staging[b-y0ubmrex6u] {
  background-color: orangered;
  color: white;
}
.env-info.dev[b-y0ubmrex6u] {
  background-color: darkred;
  color: white;
}

.env-sign-as[b-y0ubmrex6u] {
  position: fixed;
  top: 0;
  z-index: 99999999;
  left: 75%;
  transform: translateX(-50%);
  opacity: 0.8;
  padding: 4px 16px 6px 16px;
  border-radius: 0 0 12px 12px;
  background-color: dodgerblue;
  color: white;
}

.body[b-y0ubmrex6u] {
  background-color: #f8f9fa;
  color: #495057;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.main-menu[b-y0ubmrex6u] {
  --navbar-height: 56px;
}
.main-menu.navbar[b-y0ubmrex6u] {
  --bs-navbar-brand-font-size: 1.375rem;
  --bs-navbar-nav-link-padding-x: 0.75rem;
  --bs-nav-link-color: #FFF;
  --bs-navbar-color: #FFF;
  --bs-navbar-hover-color: #FFF;
}
.main-menu .links[b-y0ubmrex6u] {
  margin-left: 2rem;
}
.main-menu .links .nav-item[b-y0ubmrex6u] {
  border-right: solid 1px rgba(0, 0, 0, 0.15);
}
.main-menu .links .nav-item:first-child[b-y0ubmrex6u] {
  border-left: solid 1px rgba(0, 0, 0, 0.15);
}
.main-menu .nav-link[b-y0ubmrex6u] {
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}
.main-menu .nav-link:hover[b-y0ubmrex6u] {
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-notif-btn[b-y0ubmrex6u] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}
.nav-notif-btn:hover[b-y0ubmrex6u] {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nav-notif-btn .nav-notif-icon[b-y0ubmrex6u] {
  position: relative;
  font-size: 1.1rem;
  line-height: 1;
}
.nav-notif-btn .nav-notif-badge[b-y0ubmrex6u] {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.nav-notif-btn .nav-notif-label[b-y0ubmrex6u] {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-store-btn[b-y0ubmrex6u] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}
.nav-store-btn:hover[b-y0ubmrex6u] {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nav-store-btn .nav-store-name[b-y0ubmrex6u] {
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-store-btn .nav-store-chevron[b-y0ubmrex6u] {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.nav-store-btn .nav-store-chevron.rotated[b-y0ubmrex6u] {
  transform: rotate(180deg);
}

.hamburger[b-y0ubmrex6u] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  padding: 0;
  cursor: pointer;
}
.hamburger:focus[b-y0ubmrex6u] {
  outline: none;
}
.hamburger span[b-y0ubmrex6u] {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1)[b-y0ubmrex6u] {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2)[b-y0ubmrex6u] {
  opacity: 0;
}
.hamburger.open span:nth-child(3)[b-y0ubmrex6u] {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay[b-y0ubmrex6u] {
  display: none;
}

.mobile-nav-aside[b-y0ubmrex6u] {
  position: fixed;
  left: 0;
  top: var(--navbar-height, 56px);
  height: calc(100dvh - var(--navbar-height, 56px));
  width: 250px;
  z-index: 1041;
  background-color: #793EEF;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 1rem 0;
  border-top: solid 1px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-nav-aside.open[b-y0ubmrex6u] {
  transform: translateX(0);
}
.mobile-nav-aside .aside-nav-links[b-y0ubmrex6u] {
  flex: 1;
  overflow-y: auto;
  padding: 0 0.75rem;
}
.mobile-nav-aside .aside-nav-links li[b-y0ubmrex6u] {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin-bottom: 0.4rem;
  overflow: hidden;
}
.mobile-nav-aside .aside-link[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:link[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:visited[b-y0ubmrex6u] {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav-aside .aside-link:hover[b-y0ubmrex6u], .mobile-nav-aside .aside-link:focus[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:hover[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:focus[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:link:hover[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:link:focus[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:visited:hover[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:visited:focus[b-y0ubmrex6u] {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}
.mobile-nav-aside .aside-link.aside-link--active[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link.aside-link--active[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:link.aside-link--active[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:visited.aside-link--active[b-y0ubmrex6u] {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
}
.mobile-nav-aside .aside-link i[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link i[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:link i[b-y0ubmrex6u],
.mobile-nav-aside a.aside-link:visited i[b-y0ubmrex6u] {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.mobile-nav-aside .aside-bottom[b-y0ubmrex6u] {
  border-top: solid 1px rgba(255, 255, 255, 0.25);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-nav-aside .aside-bottom .aside-link[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-store-name[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-user-item > .aside-link[b-y0ubmrex6u] {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}
.mobile-nav-aside .aside-bottom .aside-link button[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-store-name button[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-user-item > .aside-link button[b-y0ubmrex6u] {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.mobile-nav-aside .aside-bottom .aside-link button:hover[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-store-name button:hover[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-user-item > .aside-link button:hover[b-y0ubmrex6u] {
  color: #fff;
}
.mobile-nav-aside .aside-bottom .aside-link button i:first-child[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-store-name button i:first-child[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-user-item > .aside-link button i:first-child[b-y0ubmrex6u] {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
}
.mobile-nav-aside .aside-bottom .aside-link button .fa-chevron-up[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-store-name button .fa-chevron-up[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-user-item > .aside-link button .fa-chevron-up[b-y0ubmrex6u] {
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
.mobile-nav-aside .aside-bottom .aside-link button .fa-chevron-up.rotated[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-store-name button .fa-chevron-up.rotated[b-y0ubmrex6u],
.mobile-nav-aside .aside-bottom .aside-user-item > .aside-link button .fa-chevron-up.rotated[b-y0ubmrex6u] {
  transform: rotate(180deg);
}
.mobile-nav-aside .aside-bottom .aside-user-dropdown[b-y0ubmrex6u] {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1060;
  color: #495057;
}
.mobile-nav-aside .aside-bottom .aside-user-dropdown .text-muted[b-y0ubmrex6u] {
  color: #95a5a6 !important;
}
.mobile-nav-aside .aside-bottom .aside-user-dropdown .version-container[b-y0ubmrex6u] {
  color: #95a5a6;
}
.mobile-nav-aside .aside-bottom .aside-notif-badge[b-y0ubmrex6u] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  padding: 0 3px;
  margin-right: 4px;
}

@media (max-width: 991.98px) {
  .mobile-nav-overlay[b-y0ubmrex6u] {
    display: block;
    position: fixed;
    top: var(--navbar-height, 56px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.45);
    animation: overlay-in-b-y0ubmrex6u 0.3s ease forwards;
  }
}
@keyframes overlay-in-b-y0ubmrex6u {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .mobile-nav-aside[b-y0ubmrex6u] {
    display: none !important;
  }
}
.nav-dropdown-menu[b-y0ubmrex6u] {
  position: absolute;
  top: calc(100% + 6px);
  z-index: 1050;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  min-width: 220px;
  color: #212529;
}
.nav-dropdown-menu.dropdown-end[b-y0ubmrex6u] {
  right: 0;
  left: auto;
}
.nav-dropdown-menu li[b-y0ubmrex6u] {
  list-style: none;
}
.nav-dropdown-menu .dropdown-item[b-y0ubmrex6u] {
  padding: 8px 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.nav-dropdown-menu .dropdown-item:hover[b-y0ubmrex6u] {
  background-color: #f0f0f0;
}

.user-dropdown-menu[b-y0ubmrex6u] {
  min-width: 240px;
}

.user-avatar[b-y0ubmrex6u] {
  max-width: 80px;
}

.nav-store-combobox[b-y0ubmrex6u] {
  min-width: 180px;
}

.version-container small[b-y0ubmrex6u] {
  color: #95a5a6;
}

@media (max-width: 991.98px) {
  .nav-dropdown-menu[b-y0ubmrex6u] {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 0 4px 16px;
  }
  .nav-dropdown-menu .dropdown-item[b-y0ubmrex6u] {
    color: #fff;
  }
  .nav-dropdown-menu .dropdown-item:hover[b-y0ubmrex6u] {
    background-color: rgba(255, 255, 255, 0.15);
  }
}
/* _content/iZiPlanning.ServerApp/Shared/Layouts/SubMenuLayout.razor.rz.scp.css */
/*Breakpoints view*/
[b-l2clb53lkj].nav-links .nav-link {
  padding: 0.75rem 1rem;
  border-bottom: solid 1px #dfe6e9;
}
[b-l2clb53lkj].nav-links .nav-link:hover {
  background-color: #f7f7f7;
}
[b-l2clb53lkj].nav-links .link-active {
  background-color: #dfe6e9;
  font-weight: bold;
}
