
/* ⭐⭐⭐ START OF:: auto-css/_bootstrap/dropdown.css ⭐⭐⭐ */
/* ---------------------------------------------------- */
.dropdown-menu.dropdown{
  max-height: 50vh;
  overflow: auto;
  width: 400px;
  box-shadow: 0px 0px 3px rgba(50, 50, 50, 0.5);
  padding:5px;
  border: 1px solid #707070 !important;
}
/* ---------------------------------------------------- */
/* NO HEADER <TH> (for now) */
table.table_filters_1{
  border-collapse: collapse;
  table-layout: fixed;
  border:1px solid var(--table_dashed_border_color);
  width:100%;
  font-weight: 500;

  & td {
    padding:5px;
    border: 1px solid var(--table_dashed_border_color);
    cursor: default;
    overflow:hidden;

    &:first-child {
      background-color: white;
      width:40%;
    }

    &:not(:first-child) {
      background-color: #eee;
    }

    & input,
    & select,
    & textarea{
      width:100%;
    }
  }

}
/* ---------------------------------------------------- */

/* 🌚🌚🌚 END OF:: auto-css/_bootstrap/dropdown.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/_bootstrap/modal.css ⭐⭐⭐ */
html,body{
  /*  FIX BOOTSTRAP MODAL. */
  padding: 0px !important;
}

div.is_modal{
    background-color: rgba(69, 73, 82,0.50);
    position:absolute;

    & div.modal-body{
      background-color: white;
      height: auto;
      overflow:auto;
    }

    /*  CONTAINER FOR EDITABLE MODAL. */
    & div.sub_container{
      position: relative;
      border:1px solid #333;
      height:100%;
      overflow:auto;
    }

    /*  HEADER. */
    & div.modal-header {
      border-bottom:1px solid #c7c7c7;
      background-color:#eee;
      color : #454952;
      & button.close{
        border: 0px;
        & span{
          color: #333;
          font-size:26px;
          line-height: 25px;
          font-weight:600;
          overflow:hidden;
        }
      }
    }

    /*  MAIN CONTENT. */
    & div.modal-content{
      border-radius: 5px;
      box-shadow: 0px 0px 10px rgba(69, 73, 82,0.5);
      border:1px solid #454952;
    }

    /*  FOOTER. */
    & div.modal-footer {
      border-top:1px solid #c7c7c7;
      background-color: #eee;
      color: #454952;
      display:block;
      & button{
        &.btn.button_modal{
          color:white;
          font-weight:500;
        }
        &.close_me {
          background-color: var(--my_pink);
          border:1px solid #6c757d;
          float:right;
          cursor: pointer;
        }
        /* not needed for class.modal_1  to be decomissioned */
        &.is_green{
          background-color: var(--my_green);
        }
      }

      /* overwrite default bootstrap css. */
      /* default .clos button  has margin. */
      & > *{
        margin:0px;
      }

    }

    & div.modal-header,
    & div.modal-footer,
    & div.modal-body{
      padding:10px  !important;
    }

    & div.editable_footer{
      & button {
        height:38px;
      }
    }

}

/* 🌚🌚🌚 END OF:: auto-css/_bootstrap/modal.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/_bootstrap/tags.css ⭐⭐⭐ */
/* {12-06-2023} */
/* <<<<<<<-----TAGS----->>>>>>> */
p.courier_tag,
p.version_tag{
  display:inline-block;
  padding: 0px 5px;
  border-radius: 5px;
  color: white;
  text-shadow: 0px 0px 3px #333;
  background-color: #454952;
}

/* 🌚🌚🌚 END OF:: auto-css/_bootstrap/tags.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/buttons/buttons.css ⭐⭐⭐ */
button:not(:disabled){
  cursor: pointer;
  transition-duration: 0.2s;
}
button:disabled{
  background-color: #bbbbbb;
}
button:not(.close):focus{ /* Overwrite Bootstrap */
  box-shadow: 0 0 0 0.18rem rgba(9, 128, 204, 0.7) !important;
}
button:not(:disabled):hover{
 box-shadow: 0 0 0 0.18rem rgba(108, 117, 125,0.5);
}
button.close:hover{
 box-shadow: unset;
}
/* ---------------------------------------------- */
:root {
  --buttons_border_radius: 4px;
  --buttons_color_1: #f2f2f2;
  --buttons_color_2: #cfcfcf;
}
/* ---------------------------------------------- */
button.win7{
  font-weight: 600;
  height: auto;
  min-height: 30px;
  border-radius: var(--buttons_border_radius);
  background: #f2f2f2;
  /* background: -moz-linear-gradient(top, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%);
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%); */
  background: linear-gradient(to bottom, #f2f2f2 0%, #cfcfcf 100%);
  /* background: -moz-linear-gradient(top, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%);
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%); */
  border: 1px solid #555555;
  overflow:hidden;
  padding: 3px;
  position: relative;
}
button.win7.large{
  padding: 8px;
}
button.win7.blue{
  text-shadow:0px 0px 4px #6c6c6c;
  background: var(--my_blue);
  background: linear-gradient(to bottom, var(--my_blue), #006ba7 );
  color:white;
}
button.win7.blue_green{
  text-shadow:0px 0px 4px #6c6c6c;
  background: var(--my_blue);
  background: linear-gradient(to right, var(--my_blue), #006ba7 );
  background: linear-gradient(to bottom, var(--my_green) ,var(--my_blue));
  color:white;
}
button.win7.green{
  text-shadow:0px 0px 4px #6c6c6c;
  background: var(--my_green);
  /* #00c3ac */
  background: linear-gradient(to bottom, var(--my_green), #0eb39f );
  color:white;
}
button.win7.green_2{
  text-shadow:0px 0px 4px #6c6c6c;
  background: var(--my_green);
  /* #00c3ac */
  background: linear-gradient(to bottom, #6bd620, #0eb39f );
  color:white;
}

button.win7.error{
  text-shadow:0px 0px 4px #6c6c6c;
  background: var(--my_pink);
    /* background: linear-gradient(to right, var(--my_pink), #d75487 ); */
  color:white;
}
button.win7.orange{
  text-shadow:0px 0px 4px #6c6c6c;
  background: var(--my_blue);
  background: linear-gradient(to bottom, tomato, var(--my_pink) );
  color:white;
}

button.win7.purple{
  text-shadow:0px 0px 4px #6c6c6c;
  background: #733ca7;
  /* background: linear-gradient(to top, rgb(106, 57, 121), rgb(130, 53, 130) ); */
  color:white;
}

button.win7:disabled{
    text-decoration: underline;
    text-decoration-color: var(--my_pink);
    /* text-decoration-color: #424242; */
    text-decoration-thickness: 2px;
    /* text-decoration-style: */
}
button.win7:disabled{
    background: #B2B2B2;
}
 button.win7.green:disabled,
button.win7.green_2:disabled{
    background: #3d947f ;
}
button.win7.blue:disabled{
    background: #306f95;
}
button.win7.blue_green:disabled{
  background: linear-gradient(to right, #306f95, #3d947f );
}
button.win7.error:disabled{
    background: #b04a72;
}
/*<<------------------------- GROUPED ------------------------->> */
div.grouped_win7{
  display:flex;
  flex-wrap:wrap;
  row-gap: 1px;
  /* height:32px; */
  /* overflow:hidden; */
}
div.grouped_win7 > button{
  padding-left:10px;
  padding-right:10px;
  white-space: nowrap;
  min-width: min-content;
}
/* div.grouped_win7 > button{
  flex:1;
} */
div.grouped_win7 > *:not(i){
  margin:0px;
  border-radius: 0px;
  border: 0px;
  border-top: 1px solid #707070 ;
  border-bottom: 1px solid #707070 ;
  color: #424242;
  font-weight: 500;
}
div.grouped_win7 > *:not(i):first-child{
  border-left: 1px solid #707070;
}
div.grouped_win7 > *:not(i):last-child{
  border-right: 1px solid #707070;
}
div.grouped_win7 > *:not(i):not(:first-child){
  border-left: 1px solid rgba(112, 112, 112, 0.4);
}
div.grouped_win7 > *:not(i):not(:last-child){
  border-right: 1px solid #707070 ;
}
div.grouped_win7 > *.first{
  border-left: 1px solid #707070;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
div.grouped_win7 > *.last{
  border-right: 1px solid #707070 ;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
div.grouped_win7 > input[type='checkbox']{
  width:30px !important;
  height:30px !important;
}
/*<<------------------------- FONT AWESOME ------------------------->> */
div.grouped_win7 > button > i{
  border:0px !important;
  line-height: auto !important;
  vertical-align: baseline !important;
}
/*<<------------------------- SPACER ------------------------->> */
div.grouped_win7 > div.is_spacer{
    min-width:25px;
    background-color: transparent;
    border:0px !important;
    display: flex;
    align-items: center;
    padding:0 10px;
    text-align: left;
    /* text-shadow: 0px 0px 2px rgba(51, 51, 51, 0.25); */
}
div.grouped_win7 > div.is_spacer:hover{
    cursor: default;
}
div.grouped_win7 > div.is_spacer + *:not(.is_spacer){
  border-left:1px solid #707070 !important;
}

div.grouped_win7 > div.spacer_1{ /* NEW SPACER. */
  bordeR:1px solid rgba(112, 112, 112, 0.15) !important;
  flex:1;
  margin-left:2px;
  margin-right:2px;
  background: repeating-linear-gradient(
  -45deg,
  rgba(227, 227, 227, 1),
  rgba(227, 227, 227,1) 4px,
  #eee 4px,#eee 8px);
  border:1px solid rgba(112, 112, 112, 0.5) !important;
  border-radius: 4px;
  padding:5px;
}
/*<<------------------------- MODIFIED. v1,v2 ------------------------->> */
div.grouped_win7.v2,
div.grouped_win7.v3{
  border:1px solid rgba(112, 112, 112, 0.15);
  border-radius: var(--buttons_border_radius);
}
div.grouped_win7.v3{
  background: repeating-linear-gradient(
  -45deg,
  rgba(227, 227, 227, 1),
  rgba(227, 227, 227,1) 4px,
  #eee 4px,#eee 8px);
  border-right:1px solid rgba(112, 112, 112, 0.15) !important;
}
div.grouped_win7 *.first{
  border-top-left-radius: var(--buttons_border_radius);
  border-bottom-left-radius: var(--buttons_border_radius);
}
div.grouped_win7 *.last{
  border-top-right-radius: var(--buttons_border_radius);
  border-bottom-right-radius: var(--buttons_border_radius);
}
/*<<---------------------- Nested Groups ---------------------->> */
div.grouped_win7 > div.grouped_win7{
  border:0px !important;
}
/*<<------------------------- Pressed ------------------------->> */
button.IsPressed,
button.is_pressed,
button.pressed,
button.pressed_button{
  background: #454952 !important;
  color:#fff!important;
}
/*<<---------------------- Font-awesome ---------------------->> */
button.win7:disabled i,
button.win7.green i,
button.win7.blue i,
button.win7.error i,
button.win7.blue_green i{
  color:white;
}
/*<<---------------------- Refresh button ---------------------->> */
button.win7.load{
  min-width: 85px;
}

/* 🌚🌚🌚 END OF:: auto-css/buttons/buttons.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/buttons/details-expand.css ⭐⭐⭐ */
/*<<------------------------- DT.details-expand------------------------->> */
table > tbody > tr > td.details-expand > button.win7,
table > tbody > tr > td.details-expand > button{
  padding-left:0px;
  padding-right:0px;
  width:calc(100% - 4px);
  height:20px;
  line-height: 10px;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
table > tbody > tr.shown > td.details-expand > button.win7,
table > tbody > tr.shown > td.details-expand > button{
  background: #454952;
}
table > tbody >  tr >  td.details-expand > button::before{
  content: "+";
  font-weight: 600;
  line-height: 10px;
}
table > tbody > tr >  td.details-expand.nothing > button::before{
  content: "";
  font-weight: 600;
  line-height: 10px;
}
table > tbody > tr.shown >  td.details-expand > button::before{
  content: "-";
  color: white;
  font-weight: 600;
  line-height: 10px;
}

/* 🌚🌚🌚 END OF:: auto-css/buttons/details-expand.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/fields/fields.css ⭐⭐⭐ */
/* ---------------------------------------------------- */
input,
textarea,
select{
    border:1px solid #7a7a7a;
    background-color:#fff;
    border-radius: 3px;
    font-weight: 500;
    padding-left:5px;
    color:#333;
    text-align: left;
    /* height:30px; */
    min-height: 30px;
    padding:3px;
}

input:disabled,
textarea:disabled,
select:disabled{
    background-color:#c3c3c3;
    background-color: #e2e2e2;
    color:#333;
}
/* ---------------------------------------------------- */
p{
  font-weight: 500;
  color:#333;
  display: inline;
  padding: 0px;
  margin: 0px;
}
/* ---------------------------------------------------- */
/* Input fied.type number */
/* Hide top/down arrow buttons. */
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* ---------------------------------------------------- */
input:focus,
textarea:focus,
select:focus{
  outline: 2px solid royalblue !important;
}

/* 🌚🌚🌚 END OF:: auto-css/fields/fields.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/font-size.css ⭐⭐⭐ */
@font-face {
  font-family: Montserrat;
  src: url("/library/fonts/Montserrat-Medium.ttf");
}


button,
input,
select,
a,
textarea,
select option,
p,
div.grouped_win7 *,
div.grouped_buttons *,
div.spacer,
button.dt-button
{
  font-size: 14px;
}

*.table_title{
  font-size: 14px;
}

table:not(.table-condensed) tr td{
  font-size: 13.6px;
}

table:not(.table-condensed) tr td.dataTables_empty{
  font-size: 14px;
}

table:not(.table-condensed) tr th,
table:not(.table-condensed) thead tr th{
  font-size:14px !important;
}

table.datatable tr.dtrg-group td{
 font-size: 0px !important;
}

div.grouped_win7 > div.is_spacer{
    font-size: 14px;
  }

/* --------------------------------------------- */
div.editable_container table.editable tbody tr td:nth-child(1){
  font-size: 14px !important;
}
div.editable_container table.editable thead th,
div.editable_container table.editable tbody tr td  input,
div.editable_container table.editable tbody tr td select,
div.editable_container table.editable tbody tr td option,
div.editable_container table.editable tbody tr td textarea,
div.editable_container table.editable tbody tr td p{
    font-size: 15px !important;
}

/* 🌚🌚🌚 END OF:: auto-css/font-size.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/main/main.css ⭐⭐⭐ */
html{
  overflow: hidden;
}
html,body{
  background-color: #fff;
  height:100%;
  height:100dvh;
}
body{
  display: flex;

  & #sidebar{
    height:100%;
    width:180px;
  }
}
   
#main_content{
  opacity: 0;  /* Initially hidden */
  background-color: #fff;
  color:#333;
  height:100%;
  flex:1;
  display:flex;
  flex-direction: column;

  & > div.content{ /* Direct child. */
    width:100%;
    flex:1;
    overflow: auto;
    padding:5px;
    padding-left:10px;
    position: relative;
  }

}

#main_content.fademein,
*.fademein{
  opacity: 1;
}

hr{
  margin: 5px;
}

div.hr_1 {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right,#454952,#078090, #15d070,#078090,#454952);
    background: linear-gradient(to right,#454952,var(--my_blue), var(--my_blue) ,var(--my_blue),#454952);
    background: linear-gradient(to right,#454952,#078090, #15d070,#078090,#454952);
    background: linear-gradient(to right,var(--my_pink),#454952,#078090, #15d070,#078090,var(--my_pink),#454952);
    background: linear-gradient(to right,var(--my_pink),#078090, var(--my_green),#078090,var(--my_pink));
    background: linear-gradient(to right,var(--my_pink),var(--my_blue), var(--my_green),var(--my_blue),var(--my_pink));
}

/* 🌚🌚🌚 END OF:: auto-css/main/main.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/main/scrollbar.css ⭐⭐⭐ */
div.dataTables_scrollBody,
div.slim_scrollbar_parent,
div.modal-dialog *,
div.slim_scrollbar,
div.dt-button-collection,
div.slim_scrollbar *,
.slim_scrollbar,
#Page_container{

    /* width */
    &::-webkit-scrollbar {
      width: 14px;
      height: 14px;
    }

    /* Track */
    &::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    /* Track */
    &::-webkit-scrollbar-track:horizontal {
      background: #f1f1f1;
    }

    /* Handle */
    &::-webkit-scrollbar-thumb {
      background: #757575;
    }
    &::-webkit-scrollbar-thumb:horizontal{
     background: #757575;
    }

     /* Handle on hover */
    &::-webkit-scrollbar-thumb:hover {
      background: #555;
    }

}

/* 🌚🌚🌚 END OF:: auto-css/main/scrollbar.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/main/slider.css ⭐⭐⭐ */
/* ------------------------SLIDER----------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
.panel{
  position: relative;
}
.panel.two {
  /* flex:1; */
  /* overflow: hidden; */
  /* height:100%; */
}
.slider {
  z-index: 5;
  display: block;
  position: absolute;
  width: 1px;
  background-color: #ddd;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: visible;
  user-select: none;
  z-index: 10009;
}
.slider::before {
  content: "";
  position: absolute;
  top: calc(50% - 4rem);
  height: 8rem;
  width: 8px;
  border-radius: 3px;
  cursor: col-resize;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color:  #454952;
  border:1px solid #ddd;
  border-left:0px;
}
/* #sidebar_faded_resize:hover{
  cursor: col-resize;
} */
/* .faded_slider{
  z-index: 5;
  display: block;
  position: absolute;
  width: 100%;
  background-color: transparent;
  left: 0;
  top: 0;
  bottom: 0;
  overflow: visible;
  user-select: none;
  z-index: 10001;
  border-right:2px solid transparent;
} */

.slider.pressed::before {
  background: var(--my_blue);
}

#sidebar_width_tag {
  display: none;
  position: fixed;
  width: 0px;
  right: 0;
  top: calc(50% + 4rem);
  overflow: visible;
  user-select: none;
  z-index: 10010;
  color:white;
  /* opacity:0; */
  /* transition-duration: 1s */
}
#sidebar_width_tag::before {
  content: attr(data-width);
  position: absolute;
  left: 2px;;
  top: calc(50% - 3rem - 2rem);
  /* height: 22px; */
  padding-left: 5px;
  padding-right: 5px;
  /* line-height: 22px; */
  /* width: 8px; */
  border-radius: 3px;
  background: #454952;
  border:1px solid #ddd;

}

/* 🌚🌚🌚 END OF:: auto-css/main/slider.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/tables/datatable.css ⭐⭐⭐ */
/* -----------------------table title. placed in DOMS----------------------- */
table.dataTable {
  border: none !important;
}

*.table_title{
  display:inline-block;
  height:30px;
  content: "PR line items";
  background-color: #16d18e;
  background-color: #454952;
  color:White;
  text-shadow: 0px 0px 2px #333;
  font-weight: 500;
  padding: 0px 10px;
  line-height: 26px;
  margin-right: 6px;
  border: 1px solid #333;
  text-align: center;
  float: left; /* required. do not remove. */
  border-radius: 0px;
  /* border-top-left-radius: 5px;
  border-top-right-radius: 5px; */
  background-image: linear-gradient(to top,  var(--my_blue) 2px,transparent 0);
}
*.table_title:hover{
  cursor: default;
}
/* -----------------------DOM buttons & LIST buttons----------------------- */
div.dt-buttons{
  display: flex;
}
button.dt-button{
  /* text-align: left; */
  height:30px;
  padding:0px;
  padding-left:8px;
  padding-right:8px;
  margin:0px;
  font-weight: 500;
  background: #eee;
  border: 1px solid #707070;
  border-radius: 0px;
  background: linear-gradient(to bottom, #f2f2f2 0%, #cfcfcf 100%);
  /* background: -moz-linear-gradient(top, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%); */
  /* background: -webkit-linear-gradient(top, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%); */
  /* background: linear-gradient(to bottom, #f2f2f2 0%, #ebebeb 50%, #dddddd 50%, #cfcfcf 100%); */
}
button.dt-button:not(.buttons-columnVisibility):not(.custom_collection_button):not(:last-of-type){
  border-right: 1px solid rgba(112, 112, 112, 0.30) !important;
}
button:not(.buttons-columnVisibility):not(.custom_collection_button):first-of-type{
  /* border-top-left-radius: 5px !important; */
}
button:not(.buttons-columnVisibility):not(.custom_collection_button):last-of-type{
  /* border-top-right-radius: 5px !important; */
}
div.dt-button-collection{
  box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.5);
  max-height: 80%;
  overflow:auto;
  
}
div.dt-button-collection button{
  overflow:hidden;
}
/* -----------------------LIST buttons ----------------------- */
button.buttons-columnVisibility,
button.custom_collection_button{
  padding:10px;
  width:260px !important;
  width:50%;
  margin:0px auto;
  column-gap: 2px;
  /* box-shadow: 0px 0px 3px rgba(50, 50, 50, 0.5); */
  max-height: 600px;
  overflow: auto;
}
button.buttons-columnVisibility,
button.custom_collection_button{
  /* height:26px; */
  font-weight: 500;
  display: block;
  width:calc(100%) !important;
  text-align: left;
  border:1px solid #707070 !important;
  /* counter-increment: section; */
  margin-top:2px !important;
}
/* button.buttons-columnVisibility:first-child,
button.custom_collection_button:first-child{
  margin-top:0px !important;
} */
div.dt-button-collection{
  padding:5px !important;
}
div.dt-button-collection button.dt-button{
  margin-top:2px !important;
}
div.dt-button-collection button.dt-button:first-child{
  margin-top:0px !important;
}
/* -----------------------Datatables main----------------------- */
table.DTCR_clonedTable{
  width:100px !important;
}
table.DTCR_clonedTable thead th{
  width:100px !important;
}
div.dataTables_scroll{
  border:1px solid #454952;
  /* width: calc(100% + 50px) !important; */
}
div.dataTables_scrollBody{
  /* position: relative;; */
  /* width: calc(100% + 50px);
   padding-right: 50px; */
}
div.dataTables_scrollHeadInner{
  /* ⭐⭐⭐⭐ Added on 20-10-2022  NOT TESTING ON LIVE DATA YET. ⭐⭐⭐⭐ */
  /* width:100% !important; */
}
div.dataTables_scrollHeadInner,
div.dataTables_scrollHead{
  background-color: var(--table_header_background);
}

div.dataTables_scrollFoot{
  background-color: #454952;
}
.paginate_button {
  height:30px;
  padding:0px !important;
  vertical-align: center;
  padding-left:8px !important;
  padding-right:8px !important;
  margin-bottom:4px !important;
}
.dataTables_info{
    padding-top:5px !important;
}
.buttons-columnVisibility{
    margin:1px !important;
    border:1px solid #333;
}
.buttons-columnVisibility:not(.active){
    /* background: #454952 !important; */
    text-shadow: 0xp 0px 3px #333;
    /* background: var(--my_pink) !important; */
    background: linear-gradient(to bottom, var(--my_pink), rgb(195, 87, 121));
    /* opacity: 0.75; */ 
    color: white !important;
}

.dataTables_length{
  float:right !important;
  height:30px;
}
.dataTables_length *{
  margin:0px;
}
.dataTables_length select{
  height:30px;
  border-radius: 0px !important;
  border:1px solid #333 !important;
}
/* ------------------------------------------------------------- */
/* Adding space after last row to allow for table to rize alittle bit */
table.datatable tbody::after{
  padding-bottom: 220px !important;
  left:0;
  content: "\00a0";
  font-size: 18px;
  position: absolute;
}
/* ------------------------------------------------------------- */
div.child_div{
  background-color:transparent;
  padding:0px;
  margin:5px;
  margin-right:0px; /* to allow horizontal stacking looking better. */
  border-radius:5px;
  vertical-align: top;
  display: inline-block;
  border: 1px solid #a3a3a3;
}
/* ------------------------------------------------------------- */
/* Expand (+) button. */

td.details-expand{
  vertical-align: top !important;
}
/* table.datatable td.details-expand button{
  white-space: nowrap !important;
  overflow: hidden !important;
} */

/* table.datatable tr.shown td.details-expand button{ */
  /* background-color: #454952 !important; */
  /* background-color: #fc438a !important; */
  /* border:2px solid white !important; */
  /* color:white !important;
  white-space: nowrap !important;
  overflow: hidden !important; */
/* } */
/*  */
/* table.datatable tbody tr td.is_expanded button{
  white-space: nowrap !important;
  overflow: hidden !important;
} */

div.dt-button-background{
  display:none !important;
}

/* 🌚🌚🌚 END OF:: auto-css/tables/datatable.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/tables/table_filters_1.css ⭐⭐⭐ */

/* 🌚🌚🌚 END OF:: auto-css/tables/table_filters_1.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/tables/th.css ⭐⭐⭐ */
table.datatable,
table.table_1 {

    /* header */
    /* & any other (footer) */
    /* tested. */
    &:not(.table-condensed) > thead >  tr > th,
    &:not(.table-condensed) > tfoot > tr > th {
      background-color: var(--table_header_background) ;
      color: var(--table_header_text) ;
      font-weight: 500;
      white-space: nowrap;
      overflow:hidden;
      text-overflow: ellipsis;
      text-align: left ;
      vertical-align: middle;
      border: 0px ;
      padding: 4px;
    }
    /* ---------------------------------------------------- */
    /* used to fix Datatable header not lining with tbody. */
    &:not(.table-condensed) > thead > tr:first-child > th{
      padding-bottom:5px;
      line-height:12px;
      height:20px;
    }
    /* everything after the 2nd row (including) */
    &:not(.table-condensed) > thead >  tr:nth-child(n+2) > th{
      padding:1px;
      border-bottom: 0px;
    }
    /* ---------------------------------------------------- */
    /* sticky header */
    &.sticky_header > thead > tr:first-child > th{
      position: sticky;
      top: 0px;
    }
    /* ---------------------------------------------------- */
    /* Accent */
    & > thead > tr:nth-child(1) > th.is_editable,
    & > thead > tr:nth-child(1) > th.is_editable_slim,
    & > thead > tr:nth-child(1) > th.is_auto_slim{
      background-image: linear-gradient(to top,  var(--my_blue) 2px,transparent 0);
    }
    & > thead > tr:nth-child(1) > th.is_auto,
    & > thead > tr:nth-child(1) > th.is_auto2{
      background-image: linear-gradient(to top, var(--table_is_auto_accent) 2px,transparent 0);
    }
    /* ---------------------------------------------------- */
    & th > input,
    & th > select,
    & th > textarea{
      width:calc(100%);
    }
    /* ---------------------------------------------------- */
    /* search filters */
    & > thead tr > th > *.table_addition,
    & > thead tr > th > *.search_filter{
        height: 30px;
        margin: 0px;
        border-radius: 3px;
    }
    /* ---------------------------------------------------- */
}

/* 🌚🌚🌚 END OF:: auto-css/tables/th.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/technical/DateRangePicker.css ⭐⭐⭐ */
div.daterangepicker  table.table-condensed tbody tr td{
  border:1px solid #7a7a7a !important;
  border:1px solid #ddd !important;
  position: relative;
}

div.daterangepicker  table.table-condensed tbody tr td.start-date:not(.off){
  /* border-top-left-radius: 10px !important; */
  /* border-bottom-left-radius: 10px !important; */
  /* background-color: #16d18e !important; */
}

div.daterangepicker  table.table-condensed tbody tr td.end-date:not(.off){
  /* border-top-right-radius: 10px !important; */
  /* border-bottom-right-radius: 10px !important; */
}
div.daterangepicker  table.table-condensed tbody tr td.start-date.end-date{
  border-radius: 0px !important;
}

div.daterangepicker  table.table-condensed tbody tr td.start-date.end-date{
  background: linear-gradient(45deg, #16d18e 0px, #16d18e  50% , #007bff 50%,  #007bff 100%) !important;
}


div.daterangepicker  table.table-condensed tbody tr td.off::before{
  content: "\00a0";
  width:100%;
  height:100%;
  top:0;
  left:0;
  position: absolute;
  display:inline-block;
  background: rgba(223, 223, 223, 0.8) !important;
}


div.daterangepicker .calendar-table tbody tr{
  border:0px !important;
}
div.daterangepicker .calendar-table tbody{
  border:0px !important;
}

/* 🌚🌚🌚 END OF:: auto-css/technical/DateRangePicker.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/technical/dia_straps.css ⭐⭐⭐ */
/* ------------------------------------------------------ */
div.dataTables_scrollBody,
*.dia_straps{
   background:
    repeating-linear-gradient(
   45deg,
   rgba(227, 227, 227, 1),
   rgba(227, 227, 227,1) 70px,
   rgba(238, 238, 238, 1) 70px,
   rgba(238, 238, 238, 1) 140px
   )  !important;
}
/* ------------------------------------------------------ */
*.dia_straps_2{
   background: repeating-linear-gradient(
   -45deg,
   rgba(227, 227, 227, 1),
   rgba(227, 227, 227,1) 40px,
   #eee 40px,
   #eee 80px
   ) !important;
}
/* ------------------------------------------------------ */
*.dia_straps_3{
   background: repeating-linear-gradient(
   45deg,
   rgba(227, 227, 227, 1),
   rgba(227, 227, 227,1) 4px,
   #eee 4px,
   #eee 8px
   ) !important;
}
/* ------------------------------------------------------ */

/* 🌚🌚🌚 END OF:: auto-css/technical/dia_straps.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/technical/font_awesome.css ⭐⭐⭐ */
.fa-solid,
.fa-regular{
  color: #424242;
}

.fa-solid.white,
.fa-regular.white{
  color: white;
  /* text-shadow: none !important; */
}

/* Sidebar */
a:not(.active) .fa-solid,
a:not(.active) .fa-regular{
  color: white;
}

/* 🌚🌚🌚 END OF:: auto-css/technical/font_awesome.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/technical/loading_gif.css ⭐⭐⭐ */
/* ------------------------------------------------------------ */
/*(parent-position:relative) > div.is_loading_container > div.is_loading_gif */
.is_loading_container{
  height:100%;
  width: 100%;
  top:0px;
  left:0px;
  position: absolute;  /* parent of this div should have position as relative. */
  background-color:rgba(138, 138, 138, 0.35);
  display: none;  /* default is hidden. Do NOT change. */
}

.is_loading_gif,
.is_loading_gif_before::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgd2lkdGg9IjIxMXB4IiBoZWlnaHQ9IjIxMXB4IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiPgo8Y2lyY2xlIGN4PSIzNCIgY3k9IjUwIiBmaWxsPSIjMTVjYzcyIiByPSIxNiI+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjEuMDIwNDA4MTYzMjY1MzA2MXMiIGtleVRpbWVzPSIwOzAuNTsxIiB2YWx1ZXM9IjM0OzY2OzM0IiBiZWdpbj0iLTAuNTEwMjA0MDgxNjMyNjUzMXMiPjwvYW5pbWF0ZT4KPC9jaXJjbGU+CjxjaXJjbGUgY3g9IjY2IiBjeT0iNTAiIGZpbGw9IiMxMWFhYjAiIHI9IjE2Ij4KICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJjeCIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMS4wMjA0MDgxNjMyNjUzMDYxcyIga2V5VGltZXM9IjA7MC41OzEiIHZhbHVlcz0iMzQ7NjY7MzQiIGJlZ2luPSIwcyI+PC9hbmltYXRlPgo8L2NpcmNsZT4KPGNpcmNsZSBjeD0iMzQiIGN5PSI1MCIgZmlsbD0iIzE1Y2M3MiIgcj0iMTYiPgogIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxLjAyMDQwODE2MzI2NTMwNjFzIiBrZXlUaW1lcz0iMDswLjU7MSIgdmFsdWVzPSIzNDs2NjszNCIgYmVnaW49Ii0wLjUxMDIwNDA4MTYzMjY1MzFzIj48L2FuaW1hdGU+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iZmlsbC1vcGFjaXR5IiB2YWx1ZXM9IjA7MDsxOzEiIGNhbGNNb2RlPSJkaXNjcmV0ZSIga2V5VGltZXM9IjA7MC40OTk7MC41OzEiIGR1cj0iMS4wMjA0MDgxNjMyNjUzMDYxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZT4KPC9jaXJjbGU+CjwhLS0gW2xkaW9dIGdlbmVyYXRlZCBieSBodHRwczovL2xvYWRpbmcuaW8vIC0tPjwvc3ZnPg==) !important;

  background-repeat:no-repeat ;
  background-size: contain;
  background-position:center;
}

/* ------------------------------------------------------------ */
/* Can be used in containers. */
/* Not meant to cover full divs. */
/* Width should be specified inline. */
.loading{
  opacity: 0;
  display: inline-block;
  transition-duration: 1s;
}
.loading.shown{
  opacity: 1;
}
.loading::before{
  content: "\00a0";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgd2lkdGg9IjIxMXB4IiBoZWlnaHQ9IjIxMXB4IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiPgo8Y2lyY2xlIGN4PSIzNCIgY3k9IjUwIiBmaWxsPSIjMTVjYzcyIiByPSIxNiI+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjEuMDIwNDA4MTYzMjY1MzA2MXMiIGtleVRpbWVzPSIwOzAuNTsxIiB2YWx1ZXM9IjM0OzY2OzM0IiBiZWdpbj0iLTAuNTEwMjA0MDgxNjMyNjUzMXMiPjwvYW5pbWF0ZT4KPC9jaXJjbGU+CjxjaXJjbGUgY3g9IjY2IiBjeT0iNTAiIGZpbGw9IiMxMWFhYjAiIHI9IjE2Ij4KICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJjeCIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMS4wMjA0MDgxNjMyNjUzMDYxcyIga2V5VGltZXM9IjA7MC41OzEiIHZhbHVlcz0iMzQ7NjY7MzQiIGJlZ2luPSIwcyI+PC9hbmltYXRlPgo8L2NpcmNsZT4KPGNpcmNsZSBjeD0iMzQiIGN5PSI1MCIgZmlsbD0iIzE1Y2M3MiIgcj0iMTYiPgogIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxLjAyMDQwODE2MzI2NTMwNjFzIiBrZXlUaW1lcz0iMDswLjU7MSIgdmFsdWVzPSIzNDs2NjszNCIgYmVnaW49Ii0wLjUxMDIwNDA4MTYzMjY1MzFzIj48L2FuaW1hdGU+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iZmlsbC1vcGFjaXR5IiB2YWx1ZXM9IjA7MDsxOzEiIGNhbGNNb2RlPSJkaXNjcmV0ZSIga2V5VGltZXM9IjA7MC40OTk7MC41OzEiIGR1cj0iMS4wMjA0MDgxNjMyNjUzMDYxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZT4KPC9jaXJjbGU+CjwhLS0gW2xkaW9dIGdlbmVyYXRlZCBieSBodHRwczovL2xvYWRpbmcuaW8vIC0tPjwvc3ZnPg==);
  background-repeat: no-repeat ;
  background-size: cover;
  background-position: center;
  transition-duration: 2s;
}

/* .shown_loading{
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgd2lkdGg9IjIxMXB4IiBoZWlnaHQ9IjIxMXB4IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiPgo8Y2lyY2xlIGN4PSIzNCIgY3k9IjUwIiBmaWxsPSIjMTVjYzcyIiByPSIxNiI+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjEuMDIwNDA4MTYzMjY1MzA2MXMiIGtleVRpbWVzPSIwOzAuNTsxIiB2YWx1ZXM9IjM0OzY2OzM0IiBiZWdpbj0iLTAuNTEwMjA0MDgxNjMyNjUzMXMiPjwvYW5pbWF0ZT4KPC9jaXJjbGU+CjxjaXJjbGUgY3g9IjY2IiBjeT0iNTAiIGZpbGw9IiMxMWFhYjAiIHI9IjE2Ij4KICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJjeCIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMS4wMjA0MDgxNjMyNjUzMDYxcyIga2V5VGltZXM9IjA7MC41OzEiIHZhbHVlcz0iMzQ7NjY7MzQiIGJlZ2luPSIwcyI+PC9hbmltYXRlPgo8L2NpcmNsZT4KPGNpcmNsZSBjeD0iMzQiIGN5PSI1MCIgZmlsbD0iIzE1Y2M3MiIgcj0iMTYiPgogIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxLjAyMDQwODE2MzI2NTMwNjFzIiBrZXlUaW1lcz0iMDswLjU7MSIgdmFsdWVzPSIzNDs2NjszNCIgYmVnaW49Ii0wLjUxMDIwNDA4MTYzMjY1MzFzIj48L2FuaW1hdGU+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iZmlsbC1vcGFjaXR5IiB2YWx1ZXM9IjA7MDsxOzEiIGNhbGNNb2RlPSJkaXNjcmV0ZSIga2V5VGltZXM9IjA7MC40OTk7MC41OzEiIGR1cj0iMS4wMjA0MDgxNjMyNjUzMDYxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZT4KPC9jaXJjbGU+CjwhLS0gW2xkaW9dIGdlbmVyYXRlZCBieSBodHRwczovL2xvYWRpbmcuaW8vIC0tPjwvc3ZnPg==);
  background-repeat: no-repeat ;
  background-size: cover;
  background-position: center;
  transition-duration: 5s;
} */
/* ------------------------------------------------------------ */

/* 🌚🌚🌚 END OF:: auto-css/technical/loading_gif.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/technical/other.css ⭐⭐⭐ */
/* ------------------------------------------------------ */
textarea.lines_notes {
    background-attachment: local  !important;
    background-image:
        linear-gradient(to right, white 8px, transparent 8px),
        linear-gradient(to left, white 8px, transparent 8px),
        repeating-linear-gradient(white, white 21px, rgba(214, 214, 214, 0.5)  21px, rgba(214, 214, 214, 0.5)  22px, white 22px)  !important;
    line-height: 22px !important;
}
/* ------------------------------------------------------ */
/* Disable mouse select / highlight */
.no_select,
td.dataTables_empty,
*.table_title,
button{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
/* ------------------------------------------------------ */
.ampel_green,
.IsAmpelGreen,
.IsAmpelGrun{
  background: radial-gradient(var(--my_green) , #008d81);
}
.ampel_red{
  background: radial-gradient( red, ) !important;
  background: radial-gradient(#c72362, rgb(137, 23, 23));
}
/* ------------------------------------------------------ */

/* 🌚🌚🌚 END OF:: auto-css/technical/other.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/technical/treeFlex.css ⭐⭐⭐ */

/* 🌚🌚🌚 END OF:: auto-css/technical/treeFlex.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/treeflex/treeflex.css ⭐⭐⭐ */
.tree_item {
  cursor: pointer;
  font-weight:500;
  padding:10px !important;   /* overwrite default. */
  border:1px solid #333;
  border-radius:5px;
  background-color: white;
  min-width: 120px;
  /* transition-duration: 0.10s */
}

.tree_item:not(.locked):hover{
  background: var(--my_blue);
  color: white;
  box-shadow: 0 0 0 0.18rem rgba(9, 128, 204, 0.7);
  transition-duration: 0s;
}

.tree_item:not(.locked).selected{
  /* background-color: var(--my_green); */
  background: linear-gradient(to right, var(--my_green), #0eb39f );
  color: white;
}

.tree_item.locked{
  cursor: default;
  /* background-color: rgba(231, 62, 128,0.5); */
  /* background-color: #ddd; */
}

.tree_item.locked::before{
content:"🔒 "
}

.tf-nc.tight div.tree_item{
  margin:5px;
}
.tf-nc.tight{
  padding: 5px !important;
  border-radius: 5px;
  border:1px solid #ddd;
  background-color:#eee;
}

.tf-nc:before,
.tf-nc:after {
    border-left-color: #454952 !important;
    border-left-width: 1px;
}

li li:before {
  border-top-color: #454952 !important;
  border-top-width: 1px;
}



.tf-tree{
  font-size:16px;
  overflow:auto;
  text-align:center;;
  width:100%;
  /* height:100%; */
  height: unset !important;
  padding:25px;
}
.tf-tree *{
  box-sizing:border-box;
  margin:0;
  padding:0
}

.tf-tree ul{
  display:inline-flex
}
.tf-tree li{
  align-items:center;
  display:flex;
  flex-direction:column;
  flex-wrap:wrap;
  padding:0 5px;
  position:relative
}
.tf-tree li ul{
  margin:2em 0;
  margin-bottom: 0em;
}



.tf-tree li li:before{
  border-top:.0625em solid #000;
  content:"";
  display:block;
  height:.0625em;
  left:-.03125em;
  position:absolute;
  top:-1.03125em;
  width:100%
}
.tf-tree li li:first-child:before{
  left:calc(50% - .03125em);
  max-width:calc(50% + .0625em)
}
.tf-tree li li:last-child:before{
  left:auto;
  max-width:calc(50% + .0625em);
  right:calc(50% - .03125em)
}
.tf-tree li li:only-child:before{
  display:none
}
.tf-tree li li:only-child>.tf-nc:before,.tf-tree li li:only-child>.tf-node-content:before{
  height:1.0625em;
  top:-1.0625em
}
.tf-tree .tf-nc,.tf-tree .tf-node-content{
  /* border:.0625em solid #000; */
  display:inline-block;
  /* padding:.5em 1em; */
  padding: 0;
  position:relative
}

.tf-tree .tf-nc:before,.tf-tree .tf-node-content:before{
  top:-1.03125em
}
.tf-tree .tf-nc:after,.tf-tree .tf-nc:before,.tf-tree .tf-node-content:after,.tf-tree .tf-node-content:before{
  border-left:.0625em solid #000;
  content:"";
  display:block;
  height:1em;
  left:calc(50% - .03125em);
  position:absolute;
  width:.0625em
}
.tf-tree .tf-nc:after,.tf-tree .tf-node-content:after{
  top:calc(100% + .03125em)
}
.tf-tree .tf-nc:only-child:after,.tf-tree .tf-node-content:only-child:after,.tf-tree>ul>li>.tf-nc:before,.tf-tree>ul>li>.tf-node-content:before{
  display:none
}

/*
.tf-tree.tf-gap-sm li{
  padding:0 .6em
}
.tf-tree.tf-gap-sm li>.tf-nc:before,.tf-tree.tf-gap-sm li>.tf-node-content:before{
  height:.6em;
  top:-.6em
}
.tf-tree.tf-gap-sm li>.tf-nc:after,.tf-tree.tf-gap-sm li>.tf-node-content:after{
  height:.6em
}
.tf-tree.tf-gap-sm li ul{
  margin:1.2em 0
}
.tf-tree.tf-gap-sm li li:before{
  top:-.63125em
}
.tf-tree.tf-gap-sm li li:only-child>.tf-nc:before,.tf-tree.tf-gap-sm li li:only-child>.tf-node-content:before{
  height:.6625em;
  top:-.6625em
}
.tf-tree.tf-gap-lg li{
  padding:0 1.5em
}
.tf-tree.tf-gap-lg li>.tf-nc:before,.tf-tree.tf-gap-lg li>.tf-node-content:before{
  height:1.5em;
  top:-1.5em
}
.tf-tree.tf-gap-lg li>.tf-nc:after,.tf-tree.tf-gap-lg li>.tf-node-content:after{
  height:1.5em
}
.tf-tree.tf-gap-lg li ul{
  margin:3em 0
}
.tf-tree.tf-gap-lg li li:before{
  top:-1.53125em
}
.tf-tree.tf-gap-lg li li:only-child>.tf-nc:before,.tf-tree.tf-gap-lg li li:only-child>.tf-node-content:before{
  height:1.5625em;
  top:-1.5625em
}
.tf-tree li.tf-dotted-children .tf-nc:after,.tf-tree li.tf-dotted-children .tf-nc:before,.tf-tree li.tf-dotted-children .tf-node-content:after,.tf-tree li.tf-dotted-children .tf-node-content:before{
  border-left-style:dotted
}
.tf-tree li.tf-dotted-children li:before{
  border-top-style:dotted
}
.tf-tree li.tf-dotted-children>.tf-nc:before,.tf-tree li.tf-dotted-children>.tf-node-content:before{
  border-left-style:solid
}
.tf-tree li.tf-dashed-children .tf-nc:after,.tf-tree li.tf-dashed-children .tf-nc:before,.tf-tree li.tf-dashed-children .tf-node-content:after,.tf-tree li.tf-dashed-children .tf-node-content:before{
  border-left-style:dashed
}
.tf-tree li.tf-dashed-children li:before{
  border-top-style:dashed
}
.tf-tree li.tf-dashed-children>.tf-nc:before,.tf-tree li.tf-dashed-children>.tf-node-content:before{
  border-left-style:solid
} */

/* TESTED ONLY WITH TREES WITH 1-MAIN PARENT. */
/* NOT TESTED WITH TREES THAT BEGIN WITH 2 PARENTS. */
.tf-tree > ul > li > ul{
  margin: calc(1em + 3em) 0;
  margin-bottom: 0em;
}
.tf-tree > ul > li > span.tf-nc::after{
  border-left:calc(1 * .0625em) double #000 !important;
  height:calc(1em + 2em) !important;
}

.tf-tree span.tf-nc{
  min-width: calc(100% - 10px)
}
.tf-tree > ul > li > span.tf-nc{
  min-width: calc(40%);
}

/* 🌚🌚🌚 END OF:: auto-css/treeflex/treeflex.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-css/variables.css ⭐⭐⭐ */
:root {

    --my_pink: #fc4372;
    --my_pink: #e73e80;
    /* --my_green: #16d18e; */
    --my_green: #06c89a;
    --my_blue: #0082d1;
    --my_blue: #097acc;
    --my_blue: #0980cc;
    --my_dark_gray: #454952;

    /* ----------------------------------------------- */
    /* Main sidebar div:: */
    --side_bar_background: #454952; /* used also border-right */
    --side_bar_text: #ffffff;
    --side_bar_text_dark: #454952;
    /* ----------------------------------------------- */
    /* <a> tags on hover.(not active)::*/
    --side_bar_item_background_hover: #585c62;
    --side_bar_item_text_hover: #ffffff;
    /* <a> tags active:: */
    --side_bar_item_background_active: #ffffff;
    --side_bar_item_text_active: #454952;
    /* <a> tags active on hover:: */
    /* none. */
    /* ----------------------------------------------- */
    --table_header_background:#454952;
    --table_header_text: #ffffff;

    --table_is_editable_accent: #05b3a6;
    --table_is_auto_accent: #ddd;

    --table_dashed_border_color: rgb(195, 195, 195);
    --table_cell_text: #333;
    --table_zebra_odd_background: #fff;
    --table_zebra_even_background: #eee;
    /* ----------------------------------------------- */
}

/* 🌚🌚🌚 END OF:: auto-css/variables.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-js/ajax/loading.css ⭐⭐⭐ */
/* -------------------------------------------------------------------------------------- */
.system_ajax_loading_container{
  z-index:10000;
  background-color:rgba(138, 138, 138, 0.35);
  backdrop-filter: blur(2px);
  position: absolute;
  top:0px;
  left:0px;
  width: 100%;
  height:100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.system_ajax_loading_container img.loading_img{
  height:200px;
}
.system_ajax_loading_container div.loading_text{
  font-size:20px;
  background-color:#333;
  display:inline-block;
  border-radius: 0px;
  color:White;
  text-shadow:0px 0px 3px #707070;
  box-shadow: 0px 0px 3px #707070;
  padding-left:60px;
  padding-right:60px;
  border-radius: 5px;
}
/* -------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------- */

/* 🌚🌚🌚 END OF:: auto-js/ajax/loading.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-js/bootstrap.modal/is_multiple_select/style.css ⭐⭐⭐ */
div.is_multiple_item{
  border:1px solid #ddd;
  border-left:0px;
  border-right:0px;
  border-top:0px;
  line-height: 28px;
  vertical-align: bottom;
  padding-bottom:2px;
  padding-left:5px;
  height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal.modal_multiple_select ul{
  vertical-align: bottom;
  list-style-type: none;
  padding:0px;
  font-weight:500;
}
div.is_multiple_item{
  font-weight:500;
  background-color: white;;
}
div.is_multiple_item:hover{
  cursor: pointer;
  background-color: #ddd;
}
div.is_multiple_item::before{
  content: " ";
  width:18px;
  display:inline-block;
  margin-right: 5px;
  border:1px solid #909090;
  height:18px;
  vertical-align: middle;
  margin-bottom:5px;
  border-radius: 3px;
}
div.is_multiple_item.selected::before{
  content: "✔ ";
  content: " ";
  width:18px;
  display:inline-block;
  margin-right: 5px;
  border:1px solid #b1b1b1;
  height:18px;
  vertical-align: middle;
  margin-bottom:5px;
  background-color: var(--my_green) !important;
}
/* div.is_multiple_item.ignore{
  background-color:var(--my_blue);
  color:white;
}
div.is_multiple_item.ignore:hover{
  background-color:var(--my_blue);
} */

/* 🌚🌚🌚 END OF:: auto-js/bootstrap.modal/is_multiple_select/style.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-js/custom_menu/context_menue/style.css ⭐⭐⭐ */
.custom-menu.right-click li {
    padding: 5px;
    padding-left:8px;
    padding-right:8px;
    cursor: pointer;
    list-style-type: none;
    user-select: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    padding: 0.4rem 0.8rem
}
.custom-menu.right-click li:hover {
    background-color: #ddd;
}
.custom-menu.right-click li.not_needed{
    background-color:rgba(193, 193, 193, 0.5);
    color:#6e6e6e;
    border-top:1px solid rgba(0,0,0,.1);
    border-bottom:1px solid rgba(0,0,0,.1);
    /* font-weight: 600; */
}

/* 🌚🌚🌚 END OF:: auto-js/custom_menu/context_menue/style.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-js/custom_menu/style.css ⭐⭐⭐ */
.custom-menu {
    display: none;
    z-index: 5000;
    position: absolute;
      /* overflow: hidden; */
      /* border: 1px solid rgba(0,0,0,.3); */
    border: 1px solid #424242;
      /* white-space: nowrap; */
    white-space: normal;
    font-family: sans-serif;
    background: #FFF;
    color: #333;
    border-radius: 3px;
    box-shadow: 0px 0px 3px rgba(50, 50, 50, 0.5);
    padding: 5px 0;
      /* min-width: 10rem; */
    /* min-width: 180px; */
}

/* 🌚🌚🌚 END OF:: auto-js/custom_menu/style.css 🌚🌚🌚 */

/* ⭐⭐⭐ START OF:: auto-js/main/flash_msg/style.css ⭐⭐⭐ */
#flash_msg_container{
    position:absolute;
    min-width:140px;
    bottom:0px;
    right:0px;
    z-index:10001;
}
#flash_msg_container div.item{
    text-shadow: 0px 0px 2px rgba(51, 51, 51, 0.75);
    box-shadow:  0px 0px 3px rgba(51, 51, 51, 0.5);
    color:white;
    margin:4px;
    padding-right:15px;
    padding-left:5px;
    font-weight: 500;
    border-radius: 5px;
    border:1px solid #454952;
    background-color: var(--my_green);
    cursor: default;
}
#flash_msg_container div.item.error{
    background-color: var(--my_pink);
}
#flash_msg_container div.is_hidden{
    opacity:0;
}
/* 🌚🌚🌚 END OF:: auto-js/main/flash_msg/style.css 🌚🌚🌚 */
