:root {  
  --sidebar-width: 240px;
  --sidebar-font-size: 1rem;
  --header-padding: 3rem;
  --header-height: 4rem;
  --content-height: calc(100vh - var(--header-height)); 
  --content-width: calc(100vw - var(--sidebar-width) );
  --sidebar-background: black;
  --sidebar-color: white;
}

 /**
  * CKEDITOR WIDGET WIDTH FIX
  **/
  .django-ckeditor-widget {
    display: block !important; /* Overwrite the default inline-block to grow with parent*/
  }



 /**
  * The Most Important Styles for the Layout
  *
  **/
  body {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
  }
  
  .app {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
  }
  
  /* Sidebar Style */ 
  .side-bar {
    max-width: var(--sidebar-width);     
    color: white;
    padding: 16px;
    padding-bottom: 30px;
    height: 100vh;
    transition: max-width 0.3s ease, transform 0.3s ease;
    
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    
  }

  .logo{
    max-width: calc(var(--sidebar-width) - 2rem);
    aspect-ratio: 1;

  }
  
  
  .side-bar-bottom {
    height: 100%;
  }

  /* The Menu classes */
.menu ul {
  overflow: hidden;
  max-width: calc(var(--sidebar-width)*1);
  min-height: 40vH;
}

.menu li {
  border-radius: 10px;
  border-width: 0px;
  gap: 1rem;
  width: 100%;
  height: 44px;
  display: flex;  
  align-items: center;
  padding-left: 10px;
  margin-bottom: 8px;
}

.menu li.active {
  background: var(--mdb-primary, #8C5FF7);
}

.sign-out {
  display: flex;
  justify-content: space-between;
}

.list-unstyled {
  padding-left: 0px;
}

.user-avatar {
  margin-right: 8px;
}

.user-container {
  display: flex;
}



.side-bar.side-bar__hidden {
  max-width: 64px;
}

.side-bar.side-bar__hidden .menu li {
  border-radius: 0px;
  border-width: 0px; 
  width: 100%;
  height: 44px;
  align-items: center;
  padding-left: 0px;

}

.side-bar.side-bar__hidden .menu li a{
  display: none !important;
}

.side-bar.side-bar__hidden .menu ul {
  overflow: hidden;
  max-width: calc(var(--sidebar-width)-1rem);
  min-height: 40vH;
}

.side-bar.side-bar__hidden  .menu li.active {
  
  border-top: 2px solid var(--mdb-primary, #8C5FF7);
  border-bottom: 2px solid var(--mdb-primary, #8C5FF7);
  
  background-color: unset;
}

.side-bar.side-bar__hidden .sign-out {
  display: none;

}




/* EXAMPLE LINK ICON */
.menu li::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  /* Necessary for solid icons, adjust according to icon style */
  margin-right: 10px;
  /* Space between the icon and the list item text */
  width: 1rem;

}

.menu a {
  color: #f1f1f1;
  font-size: var(--sidebar-font-size);
}

  
  /* The content canvas*/
  .main {
    flex: 1;
  }

  /* The Toolbar in the header with the help button and language select */
  .top-toolbar {
    max-height: 4rem; /* */
    border-bottom: 1px solid var(--mdb-border-color);    
  }
  
  /* The wrapper for the content block */
  #page-content {   
    /* padding: 0 1rem 0 0; */
    min-height: var(--content-height);
    max-height: var(--content-height);
    max-width: var(--content-width);
    /* overflow: auto; */
  }
  
  /* Animtaiont for header and content block wrappers */
 
  #header-block,
  #page-content {    
    transition: max-width 0.5s ease, width 0.5s ease;    
  }
  

/* Overwrite MDB Input Styles */
.form-control, .form-select  {
  border-radius: .75rem !important;
  --mdb-bg-opacity: 1;
  background-color: rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important;
  font-size: .75rem !important;
  padding-top: 0.5rem !important;
  padding-right: 1rem !important;
  padding-bottom: 0.3rem!important;
  padding-left: 1rem!important;
}

label {
  font-size: .75rem !important;
}

/* Overwrite MDB Select Styles */

.form-select {
  min-width: 3rem;
}

/* Overwrite Select2 Styles */ 

/* Make sure select2 use the space available */
.select2-container {
  width:100% !important;
}


/* select2 search styles */
.select2-search__field{
  --mdb-bg-opacity: 1;
  background-color: rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important;
  border-radius: 0.25rem !important;
  border: 1px solid  var(--mdb-border-color)!important; /* Grey border */  
 
}

.select2-search--dropdown{
  padding:0.5rem 1rem 0.5rem 1rem !important;
}

.select2-search__field:focus{
  outline: 2px solid #8C5FF7 !important;
}



.select2-container .select2-search--inline .select2-search__field { 
  height: 20px !important; 
  font-size: small !important;
}

/* Select2 Container Select2 Selection */
.select2-container .select2-selection {
  --mdb-bg-opacity: 1;
  background-color: rgba(var(--mdb-light-rgb), var(--mdb-bg-opacity)) !important;
  border: 1px solid  var(--mdb-border-color)!important; /* Grey border */
  border-radius: 0.75rem !important; /* Rounded corners */
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  --mdb-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");  background-image: var(--mdb-form-select-bg-img) !important;
  background-image: var(--mdb-form-select-bg-img) !important;
  background-size: 16px 12px;  
}

/* Single Selection */
.select2-container .select2-selection--single {
  /* Adjust height for single selection */    
  line-height: 1.1!important;
  padding: 0.25rem!important;
  height: 2.2rem !important;
}

.select2-selection__rendered {
  color:  #7E89A6  !important; 
  font-family: Roboto;
  font-size: small;
}

/* select2 selection borders when container opened below */
.select2-container--open.select2-container--below .select2-selection {
  border-radius: 0.75rem  0.75rem 0 0 !important; /* Rounded corners */
}

/* select2 selection borders when container opened above */
.select2-container--open.select2-container--above .select2-selection{
  border-radius: 0 0 0.75rem  0.75rem  !important; /* Rounded corners */
}

/* select2 container open */
.select2-container--open .select2-selection{
  border-color: #000 !important;
}

/* Select2 Dropdown */
.select2-dropdown { 
  border: 1px solid !important; 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: small;
  color:  #7E89A6  !important; 
}
/* The Dropdown Below */
.select2-container--open .select2-dropdown--below{
  border-top: none !important;
  border-top-right-radius:0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius:   0.75rem !important;
  border-bottom-right-radius:0.75rem !important; /* Rounded corners */     
}

/* The dropdown above */
.select2-container--open .select2-dropdown--above{
  border-bottom: none !important; 
  border-top-right-radius:  0.75rem !important;
  border-top-left-radius: 0.75rem !important; /* Rounded corners */ 
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;  
}

/* Select2 Options */
.select2-results {
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;  
}

/* Select2 Option Highlighted */
.select2-results__option--highlighted, .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(246, 242, 254, 1) !important;  
  border-radius: 0.25rem;
  color: #000 !important;
}

/* Select2 Options */
.select2-results__option {
  padding: 6px;
  height: 2.2rem !important;
  margin:0 0.5rem 0 0.5rem;
  user-select: none;
  -webkit-user-select: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Select2 Selectable */
.select2-results__option--selectable {
  cursor: pointer;
}

/* Hide The Original Select 2 Arrow */
.select2-container .select2-selection--single .select2-selection__arrow b{
  border:none !important;  
}

/* Old Select2 Styles */
#language-select-form {
  width: 144px;
}

.article-add-info {
  display: flex;
  width: 654px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.article-additional-info {
  border-radius: 16px;
  background: var(--gary, #FAFAFC);
}


#addProductSection h5 {
  color: var(--black, #000);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  height: 30px;
  margin-bottom: 0px !important;
  margin-right: 12px;
}





.orders-nav {
  display: flex;
  padding: 9px 20px;
  align-items: center;
  gap: 8px;
  border-radius: 41px;
  background: var(--White, #FFF);
  color: var(--black, #000);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}

.card-body p {
  margin-bottom: 0px;
}

.card-body {
  padding: 5px !important;
}

.card-footer a {
  padding: 0px;
}

.submitted-status-badge {
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  background: rgba(140, 95, 247, 0.10);
  color: var(--paimary, #8C5FF7);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}

.generate-report-btn {
  display: flex;
  padding: 9px 15px 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 8px;
  background: var(--paimary, #8C5FF7);
  color: var(--White, #FFF);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.no-report-badge {
  display: flex;
  padding: 8px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  background: var(--Blue-B30, #F6F2FE);
  color: var(--blck-50, #7E89A6);
  justify-content: center;
  
  /* Roboto/12/Regular */
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}

.generate-report-btn:hover {
  cursor: pointer;
}

#reportFilterSelect {
  display: flex;
  padding: 9px 15px 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 8px;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--White, #FFF);
  color: var(--paimary, #8C5FF7);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.download-reports-list b {
  color: var(--50-black, #7E89A6);

  /* Roboto/16/Medium */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.download-reports-list-header {
  display: flex;
  width: 1212px;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--Blue-B20, #FAF9FF);
}

.draft-status-badge {
  padding: 6px 12px;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  background: rgba(140, 95, 247, 0.05);
  color: var(--blck-50, #7E89A6);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}

#enterpriseFilterSelect, #statusFilterSelect, #customFilterSelect {
  display: flex;
  padding: 9px 15px 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 8px;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--White, #FFF);
  color: var(--paimary, #8C5FF7);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.order-history-details-container {
  padding: 24px;
}


.func-button:hover {
  cursor: pointer;
}

#orderEditorView>th, #orderEditorView>tr, #orderEditorView>td {
  border: 1px solid var(--line, #F0F1FA);
}


.document_upload_btn {
  width: 141px;
  color: var(--paimary, #8C5FF7) !important;

  /* Roboto/14/Regular */
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

.upload-cancel-btn {
  display: flex;
  width: 210px;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--White, #FFF);
  color: var(--paimary, #8C5FF7);

  /* Roboto/16/Regular */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.select-table-fields-modal {
  position: fixed !important;
  right: 52px;
  top: 250px;
  height: calc(100vh - 330px);
  overflow-y: auto;

  display: inline-flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;

  border-radius: 16px 0px 0px 16px;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--White, #FFF);
  box-shadow: -20px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.selected-field-form {
  height: 230px;
}

#selectedFieldsForm {
  height: 100%;
}




.tracking-order-table-container {
  position: relative !important;
}

.tracking-order-filter {
  position: absolute;
  top: 60px;
  left: 0px;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 16px 24px 16px 60px;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--gary, #FAFAFC);
}



.tracking-order-func-btn-contaner {
  position: absolute;
  width: calc(100% - 20px);
  top: 10px;
  /* left: 200px; */
}

.tracking-order-filter label {
  color: var(--blck-50, #7E89A6);

  /* Roboto/14/Regular */
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

.tracking-order-filter input {
  display: flex;
  width: 125px;
  height: 42px;
  padding: 13px 8px 13px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--White, #FFF);
  color: var(--blck-50, #7E89A6);

  /* Roboto/12/Regular */
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}



.save-order-btn a {
  display: flex;
  width: 95px;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  opacity: 0.2;
  background: var(--paimary, #8C5FF7);
  color: var(--White, #FFF);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.enterprise-field {
  font-weight: bold;
}

.order-create-by {
  font-weight: bold;
}

#orderEditorView {
  border-radius: 10px;
  background-color: white;
}

#orderEditorView tr:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.order-editor-item-container p {
  margin-bottom: 0px !important;
}

#orderEditorView tr:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}


.no-items-in-order{
  color: var(--blck-50, #7E89A6);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

#language_select {
  color: var(--black, #000);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  display: flex;
  padding: 8px 10px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}


.language {
  padding: 1rem 30px;
}

.welcome-user-container {
  display: flex;
}


.new-order {
  display: flex;
  padding: 12px 20px 12px 15px;
  gap: 4px;
  background-color: black;
  color:white;
  border-radius: 8px;
  height: 48px;
}



/* HEADER WHAT ????? */
.home-header {
  border-radius: 16px;
  background: var(--paimary, #8C5FF7);
  margin: 24px 0px;
  padding: 24px;
  max-width: calc(100vw - var(--sidebar-width));
  transition: max-width 0.5s ease, width 0.5s ease;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}





/*
 * The Legacy flash message container
 */

 #flash-message-container {
  position: absolute;
  left: calc(var(--sidebar-width) + 1rem);
  top: 1rem;
  right: 1rem;
  height: fit-content;
}

.flash-message {
  min-width: 300px;
  text-align: center;
  z-index: 1050;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}


.form-group {
  display: flex;
  flex-direction: row;
  width: 50%;
  align-items: center;
}
/* @superdev - there are less problemativ ways to fix the font size
.form-select, .form-control-sm {
  height: 42px;
  border-radius: 12px !important;
  border: 1px solid var(--line, #F0F1FA) !important;
  background: var(--gary, #FAFAFC) !important;
}
*/
.welcome-user {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-label.small {
  color: var(--black, #000);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 150%; /* 21px */
  margin-bottom: 0px;
  text-wrap: nowrap;
  margin-right: 8px;
}

.order-number {
  color: black;
}

.order-info {
  height: 42px;
}

.welcome-user p, .welcome-user h5 {
  margin-bottom: 0px;
}

.created {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.created p {
  padding: 13px 12px 13px 16px;
  color: var(--black, #000);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

.order-info {
  display: flex;
  justify-content: space-between;
}

.card-body>div {
  padding: 12px 16px;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
}

/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
  height: 200px;
}

/* 
* The Menu Icons
*/

.reporting-link::before {
  content: '\f15c';
}

.order-history-link::before {
  content: '\f550';
}

.tracking-view-link::before {
  content: '\f4de';
}

.help-center-link::before {
  content: '\f1cd';
}

/* Active menu icon highlight */

#side-bar-menu li>a,
.text-glow {
  transition: text-shadow 0.3s ease, transform 0.3s ease;

}


#side-bar-menu li>a:hover,

.text-glow:hover {
  text-shadow: 0 0 10px rgba(105, 163, 255, 0.8),
    0 0 15px rgba(105, 163, 255, 0.7),
    0 0 20px rgba(105, 163, 255, 0.6);
  transform: scale(1.01);

}

.close-generate-report {
  display: flex;
  width: 174px;
  padding: 12px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  border: 1px solid var(--Blue-B40, #F0EAFE);
  background: var(--White, #FFF);
  color: var(--paimary, #8C5FF7);

  /* Roboto/16/Medium */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.tracking-fields-btn {
  display: flex;
  justify-content: center;
  padding: 9px 20px 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--line, #F0F1FA);
  background: var(--White, #FFF);
  align-items: center;
  color: var(--paimary, #8C5FF7);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.confirm-generate-report {
  display: flex;
  width: 174px;
  padding: 12px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: var(--paimary, #8C5FF7);
  color: var(--White, #FFF);

  /* Roboto/16/Medium */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.generate-report-modal-title {
  color: var(--black, #000);
  text-align: center;
  /* Roboto/32/SemiBold */
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
}


/* HELP PAGE STYLES*/

@keyframes fadeInMove {
  0% {
    opacity: 0;
    right: -10rem;
  }

  100% {
    opacity: 1;
    right: 0;
  }
}

@keyframes fadeOutMove {
  0% {
    opacity: 1;
    right: 0;
    display: block;
  }

  100% {
    opacity: 0;
    right: -25rem;
    display: none;
  }
}




/* Dashboard */
.dashboard .tab-content {
  max-height: calc(var(--content-height) - 7rem);
  overflow: auto;
}

/* dashboar card css */
.dashboard-card .table-container {
  max-height: 160px;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  font-size: smaller;
}

.dashboard-card .scrollable-tbody td,
.dashboard-card .header-row th {
  min-width: 15px;
  /* start with a basic min-width */
}

/* searchable hidden class*/

.searchable.card.hidden,
.searchable.d-flex.hidden,
.searchable.hidden,
.searchable.hidden>div,
.searchable.hidden form,
.searchable.hidden ul,
.searchable.hidden ul li,
.searchable.hidden .flex-fill {
  display: none !important;
}

/* scrollbar */

/* width */
::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
  /* border-radius: 4px !important;*/
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

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

.django-message-box {
  position: absolute;
  width: 70%;
  padding: 5rem;
}

/* Small Checkboxes */
.form-check-sm .form-check-input {
  scale: 0.7;
}

/* Adjust the label positioning if needed */
.form-check-sm .form-check-label {
  line-height: 1.5;
  /* Adjust as needed */
  margin-left: 20px;
  /* Adjust based on the new checkbox size */
  font-size: small;
}


/* Report Preview */
.report-preview {
  width: 100% !important;
  aspect-ratio: 1 / 1.41;
  overflow: hidden;
}

.report-preview-iframe {
  position: relative;
  top: -195%;
  left: -200%;
  scale: 0.2;
}

@media (max-width: 1199px) {


  .report-preview-iframe {
    position: relative;
    top: -320%;
    left: -324%;
    scale: 0.133;
  }
}

/* LANGUAGE SELECTOR WIDGETS*/
.available_language {
  opacity: var(--sidebar-hidden-content-opacity);
}

.load-screen {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display: block;
 
  background-color: rgba(0,0,0,0.3);

}

.lc-message-box{
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: fixed;
  bottom:0;
  right:0;
  width:auto;
  height: fit-content;
  padding: 0.3rem;
  z-index: 5000;
}

.lc-help-btn{  
  display: flex;
  padding: 3px 8px 3px 3px;
  align-items: center;
  gap: 8px;
  border-radius: 37px;
  border: 1px solid var(--line, #F0F1FA);
  color: var(--black, #000);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}


.help-overlay-container {
  position: absolute;
  display: none;
  /* You will toggle this with JavaScript */
  width: 25rem;
  right: -25rem;
  top: 0px;
  bottom: 0px;
  opacity: 0;
  /* Start with invisible container */
  z-index: 10002;
  animation: fadeOutMove 1s forwards;
  /* Apply the animation */

}

.help-overlay-container.show {
  display: block;
  /* Make it visible when the class 'show' is added */
  animation: fadeInMove 1s forwards;
  /* Apply the animation */
}

.help-overlay-container>.help-content-container {
  overflow-y: auto;
  max-height: calc(100vh - 8rem);
}


/* Custom Field Select */
.custom-field-select{
  word-wrap: normal;
  display: block;
  margin:0;
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  padding-right: 1.75rem;
  font-size: .775rem;
  border-radius: .25rem;     
  color: #4f4f4f;
  --mdb-border-opacity: 1;
  border-color: rgba(var(--mdb-primary-rgb),var(--mdb-border-opacity))!important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .5rem center;
  background-size: 16px 12px;
  border: 1px solid #bdbdbd;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.075);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}