/* _content/iZiPlanning.ServerApp/Components/Dialog/Customs/DialogContainerComponent.razor.rz.scp.css */
/********************/
/*      Border      */
/********************/
/********************/
/*     Shadows      */
/********************/
/********************/
/*     Colors      */
/********************/
/* 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: 1050;
  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: 1051;
  background-color: white;
  border-radius: 10px;
  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: 1051;
  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 #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

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

/* Body */
.dialog-body[b-dzhbe8rk7o] {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* 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 slideDown-b-dzhbe8rk7o {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight-b-dzhbe8rk7o {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInLeft-b-dzhbe8rk7o {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInTop-b-dzhbe8rk7o {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideInBottom-b-dzhbe8rk7o {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* 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/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/EventComponent.razor.rz.scp.css */
.button-opacity[b-u6ppssovzz] {
    opacity: 0;
    transition: opacity .35s ease;
}

.card-body:hover .button-opacity[b-u6ppssovzz] {
    opacity: 1;
}
/* _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 */
#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;
}

#next-update[b-y0ubmrex6u] {
    position: fixed;
    top: 0;
    z-index: 999999;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
    -moz-border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    border-radius: 0 0 12px 12px;
    max-width: 475px;
}

.env-info[b-y0ubmrex6u] {
    position: fixed;
    top: 0;
    z-index: 99999999;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
    padding: 4px 16px 6px 16px;
    -moz-border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    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;
    }

    .btn-close[b-y0ubmrex6u]{
        position:absolute;
        top:10px;
        right:10px;
    }

.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;
    -moz-border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    border-radius: 0 0 12px 12px;
    background-color: dodgerblue;
    color: white;
}
/* _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; }
