/*
  version: 26

 

*/


:root {
  --header-backgroundColor: #4285f4;
  --header--tab__textColor: white;
  --header--tab__textColorHover: #d9dfff;
}
html{
  height: 100%;
  margin: 0;
  padding:0;
  
}

body{
  height:100%;
  /*font-family: "Segoe UI", "Segoe UI Web (West European)", "Arial";*/
  font-family: "Arial";
  margin: 0px;
  padding:0px;
}


input,select,textarea,button{
  /*font-family: "Segoe UI", "Segoe UI Web (West European)", "Arial";*/
  font-family: "Arial";
}

header{
    background-color: var(--header-backgroundColor);
    color: white;
    width: calc(100% - 10px);
    height: 50px;
    line-height: 50px;
    padding: 0 5px;
}

#btnMenu{
  display:none;
  min-width:30px;
}
    
#btnMenu i.fa.fa-bars{
  font-size: 21px;
  color:white;
}
/*  ========================================================================================= */
/*  MAIN |  MAIN |  MAIN |  MAIN |  MAIN |  MAIN | */
/*  ========================================================================================= */



pagebody {
    display: flex;
    height: calc(100% - 50px);
    overflow: hidden;
}


pagebody.showOnlyList detailscontainer {
  display: none;
}
pagebody.showOnlyList listcontainer {
  width: 100%;
}



pagebody.showOnlyDetails listcontainer {
  display: none;
}


header .header_accordionMenu { 
      display: none;
}
    
menucontainer {
    background: #f5f5f5;
    width: 250px;
    min-width: 250px;
    height: calc(100%);
    display: flex;
    flex-direction: column;
    transition: all 0.1s ease-in-out;
    /*border-inline-end: 1px solid #E0E0E0;*/
}

menucontainer .menuContainer_accordionMenu { 
  cursor:pointer;
  width: 27px;
  font-size: 16px;
}

.menuContainer_shrink {
  transition: all 0.1s ease-in-out;
  width: 48px;
  min-width:48px;
}

.menuContainer_shrink .smenu{
  height: 0;
  overflow: hidden;
}

contentContainer{
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  height: 100%;
}
.contentToolbar{
  background:white;
  width: calc(100% - 12px);
  height: 36px;
  min-height: 36px;
  line-height:40px;
  border: 1px solid #E0E0E0;
  border-top:none;
  display: flex;
  padding-top:4px;
  padding-inline-start: 10px;
}

.contentBody {
    /*background: white;*/
    display: flex;
    flex-grow: 1;
    height: 100%;
}



listcontainer {
  position: relative;
    background: white;
    min-width: 350px;
    width: 350px;
    height: calc(100%);
    display: flex;
    flex-direction: column;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    z-index: 0;
    text-align: start;
    
}
detailscontainer {
    background: #f5f5f5;
    height: calc(100%);
    flex-grow:1;
    display: flex;
    flex-direction: column;
    border-inline-end: 1px solid #E0E0E0;
    width: 100%;
    overflow: hidden;
}

infocontainer {
    background: #f5f5f5;
    width: fit-content;
    display: flex;
    height: calc(100%);
    flex-direction: column;
}

.toolBar {
    width: calc(100% - 20px);
    height: 40px;
    min-height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    padding: 0px 10px;
    min-width: 230px;
    
}

.subToolBar {
    width: calc(100% - 10px);
    height:40px;
    min-height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #E0E0E0;    
    display:flex;
    padding-inline-start:10px;
    
}

.content {
    width: 100%;
    flex-grow:1;
    overflow:auto;
    /*scrollbar-width: thin;*/
}

detailscontainer .content {
    text-align:start;
}


.footBar {
    width: 100%;
    height:40px;
    min-height: 40px;
    line-height: 40px;
    border-top: 1px solid #E0E0E0;        
}



.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* ================================================================================  */



/*======================================================================================== */
/*== ZE-LIST | ZE-LIST | ZE-LIST | ZE-LIST | ZE-LIST | ZE-LIST | ZE-LIST | ZE-LIST | ===== */
/*======================================================================================== */

   



.ze-list{
  
}

.ze-list__item {
    display: flex;
    cursor:pointer;
    border-inline-start:4px solid transparent;
    color:black;
    text-decoration:none;
    font-size:14px;
    height:32px;
    line-height: 32px;
    text-decoration: none;
    color:black;
}
.ze-list__itemGroup {
    height:40px;
    line-height: 40px;
}

.ze-list__item-selected{
    border-inline-start:4px solid red;
    /*background: #d9d9d9;*/
}

.ze-list__item-primary {
    display: flex;
    flex-grow: 1;
}
.ze-list__item-secondery {
    text-align: center;
}

.ze-list__itemIcon{
  line-height: 32px;
  width:40px;
}

.ze-list__item-icon{
  margin-inline-end:10px;
}

@media (min-width: 700px) {
  .ze-list__item:hover {
    text-decoration: none;
    color:black;
  }
  
  .ze-list__item:hover{
    background-color:#b9b9b9;
  } 
}

@media (max-width: 699px) {
  .ze-list__item:active {
    text-decoration: none;
    color:black;
  }
  
  .ze-list__item:active{
    background-color:#b9b9b9;
  } 
}

/*======================================================================================== */
/*======================================================================================== */
/*======================================================================================== */

/*======================================================================================== */
/*== ZE-CARD | ZE-CARD | ZE-CARD | ZE-CARD | ZE-CARD | ZE-CARD | ZE-CARD | ZE-CARD | ===== */
/*======================================================================================== */

.ze-card {
  display: flex;
  flex-direction: column;
  /*font-size: 16px;*/
  /*font-weight: 400;*/
  min-height: 200px;
  /*overflow: hidden;*/
  z-index: 1;
  position: relative;
  background: #fff;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
  max-width:900px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 12px;
}
.ze-card__title{
  display: flex;
  border-bottom: 3px double #eee;
  text-align:start;
  height: 50px;
  padding: 0 30px;
}

.ze-card__title-text{
  flex-grow:1;
  line-height: 50px;
}
.ze-card__title-menu{
  
  
  
    line-height: 50px;
}

.ze-card__title2lines{
  display: flex;
  border-bottom: 3px double #eee;
  text-align:start;
  height: 50px;
  padding: 0 30px;
}

.ze-card__title2lines-text{
  flex-grow:1;
  padding:8px;
}

.ze-card__title2lines-subTitle{
    color:gray;
    font-size:12px;
}
/*======================================================================================== */
/*======================================================================================== */
/*======================================================================================== */

/*======================================================================================== */

/*======================================================================================== */
/*== ZE-DATA | ZE-DATA | ZE-DATA | ZE-DATA | ZE-DATA | ZE-DATA | ZE-DATA | ZE-DATA    ==== */
/*======================================================================================== */

.ze-frmData{
    padding: 0 30px 30px 30px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;    
    
}
.ze-frmData__item{
  text-align:start;
  margin-top: 40px;
  margin-bottom: 0px;
  height: 42px;  
  width:320px;
}

.ze-frmData__item-title{
    color: #333;
    display: block;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px;
}

.ze-frmData__item-content{
    color: #333;
    font-size: 16px;
    line-height: 16px;
}

/*======================================================================================== */
/*======================================================================================== */
/*======================================================================================== */


/*======================================================================================== */
/*== ZE-DATA-MENU | ZE-DATA-MENU | ZE-DATA-MENU | ZE-DATA-MENU | ZE-DATA-MENU | ZE-DATA-MENU  ==== */
/*======================================================================================== */

.ze-menu > ul {
    list-style: none;
    padding-inline-start: 0;
    font-size: 14px;
    line-height: 40px;
    width: 100%;
    min-width:240px;
    text-transform: capitalize;
}

.ze-menu > ul li a {
    display: flex;
    text-decoration: none;
    height: 40px;
    color: #323130;
    position: relative;
    border-start-end-radius: 20px;
    border-end-end-radius: 20px;
}


.smenu a {
    margin-inline-start: 23px;
    border-inline-start: 1px solid #dfdfdf;
    padding-inline-start: 10px;
}

.ze-menu > ul li .ze-menu--item-mainGroup:after{
  content: "\f078";
  margin-inline-start: auto;
  margin-inline-end: 12px;
  font-family: "Font Awesome 6 Pro";
  transition: all .1s ease-in-out;
}

.toggle-up .ze-menu--item-mainGroup:after{
  transform: rotate(-180deg);
}

.toggle-up .smenu{
   transition: all .1s ease-in-out;
}


/*.ze-menu ul li > a > i {*/
/*  color: #323130; */
/*  font-family: "Font Awesome 6 Pro"; */
/*  font-weight: 300; */
/*  line-height: inherit; */
/*  width: 48px; */
/*  text-align: center; */
/*  font-size: 16px;*/
/*}*/

.ze-menu ul li a i {
  color: #323130; 
  font-family: "Font Awesome 6 Pro"; 
  font-weight: 300; 
  line-height: inherit; 
  width: 48px; 
  text-align: center; 
  font-size: 16px;
}

.ze-menu ul li a.ze-menu--item__selected {
  background: rgba(0, 0, 0, 0.1);
}

/*.ze-menu ul li a:before { */
/*  content: ""; */
/*  position: absolute; */
/*  background: red; */
/*  width: 4px; */
/*  height: 15px; */
/*  top: 12px; */
/*  inset-inline-start: 15px;*/
/*  opacity: 0;*/
/*}*/


.ze-menu ul li .smenu .smenu a {
  padding-inline-start: 35px;
} 
/*.ze-menu ul li .smenu .smenu a:before {*/
/*  inset-inline-start: 30px;*/
/*} */

/*.ze-menu ul li a.ze-menu--item__selected:before{ */
/*  transition: all 0.4s ease-in-out;*/
/*  opacity: 1;*/
/*} */

/*.ze-menu--item__selected {*/
/*  background: rgba(0, 0, 0, 0.1);*/
/*}*/

li.ze-menu--item.toggle-up .smenu {
  /*max-height: 10000px;*/
  max-height: unset;
  transition: all .1s ease-in-out;
}

.ze-menu--item .smenu {
    max-height: 0;
    overflow: hidden;
    transition: all .1s ease-in-out;
}

.ze-menu--item .smenu a i{
  min-width: 30px;
  width: 30px;
}

.ze-menu--item--budg { 
  line-height: 9px; 
  position: absolute; 
  inset-inline-end: 30px; 
  top: 10px; 
  background-color: red; 
  width: 36px; 
  height: 13px; 
  border-radius: 6px; 
  font-size: 11px; 
  padding: 0px; 
  text-align: center; 
  padding-top: 5px; 
  color: white; 
  z-index: 0; 
  box-shadow: -1px 1px 2px 0 rgb(0 0 0 / 30%); 
} 

.ze-menu--item--counter {
  max-width: 50px;
  margin-inline-start: 3px;
  margin-inline-end: 15px;
  color: gray;
  text-align: end;
}

.ze-menu--item--span{
  display: block;
  text-align: start;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (min-width: 700px) {
  .ze-menu ul li a:hover {
    background: white;  
  }
  
  .ze-menu ul li a.ze-menu--item__selected:hover {
    background: rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 699px) {
  .ze-menu ul li a:active {
    background: white;  
  }
  
  .ze-menu ul li a.ze-menu--item__selected:active {
    background: rgba(0, 0, 0, 0.15);
  }
}

/*======================================================================================== */
/*======================================================================================== */
/*======================================================================================== */


/* ==================================================================================== */  
 /* Tooltip container */  
/* ==================================================================================== */  
.zeTooltip {  
    position: relative;  
    display: inline-block;  
}  
  
/* Tooltip text */  
.zeTooltip .zeTooltiptext {  
    visibility: hidden;  
    width: 120px;  
    background-color: #555;  
    color: #fff;  
    text-align: center;  
    padding: 5px 0;  
    border-radius: 6px;  
  
    /* Position the tooltip text */  
    position: absolute;  
    z-index: 1;  
    bottom: 125%;  
    left: 50%;  
    margin-left: -63px;
  
    /* Fade in tooltip */  
    opacity: 0;  
    transition: opacity 0.3s;  
}  
/* Tooltip text in */  
.zeTooltip .zeTooltiptextIn {
  gap: 5px;
  display: flex;
  width: auto;
  padding: 10px;
  align-items: center;
  z-index: 2;
}
/* Tooltip text Word */  
.zeTooltip .zeTooltiptextWord {
  text-transform: capitalize;
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* Tooltip text Word */  
.zeTooltip .zeTooltiptextWordOut {
  border-radius: 4px;
  border: 1px solid #FFF;
  display: flex;
  padding: 2px 5px;
  align-items: flex-start;
  gap: 10px;
}



/* Tooltip arrow */  
.zeTooltip .zeTooltiptext::after {  
    content: "";  
    position: absolute;  
    top: 100%;  
    left: 50%;  
    margin-left: -5px;  
    border-width: 5px;  
    border-style: solid;  
    border-color: #555 transparent transparent transparent;  
}  
  
/* Show the tooltip text when you mouse over the tooltip container */  
.zeTooltip:hover .zeTooltiptext {  
    visibility: visible;  
    opacity: 1;  
}  
/* ==================================================================================== */ 



@media screen and (max-width: 699px) {
    menucontainer {
      z-index: 100; 
      position: absolute; 
      inset-inline-start: -100%; 
      transition: inset-inline-start 0.25s; 
      width: 100%; 
    }
    
    
    .menucontainer__open{
      inset-inline-start:0;
      right:0
      
    }
    #btnMenu{
      display:inline-block;
      
      
    }
    
    infoContainer {
      z-index: 2;
      position:absolute;
      inset-inline-start:-160%;
      right:-160%;
      transition: right  0.25s;
      transition: inset-inline-start  0.25s;
      width:100%;
      padding-inline-end:50px;
    }
    
    listcontainer{
      width:100%;
      min-width: 100%;
    }
    
    header .header_accordionMenu { 
      display: block;
      font-weight: 400;
      font-size: 16px;
      width: 40px;
    }
    
    .menuContainer_shrink {
      transition: all 0.1s ease-in-out;
      inset-inline-start:0px;
      width: 100% !important;
    }
    .menuContainer_accordionMenu{
      display:none;
    }
    
    .ze-menu ul {
      width: auto;
    }
    .menuContainer_shrink .smenu {
      height: auto;
    }
    .topSargelRight{
      display: none !important;
    }
    
    contentcontainer detailscontainer .content {
        padding-inline-start: unset;
    }

}