@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
.primaryColor {
  color: #0085FF;
}

.white-bg {
  background-color: white !important; 
}

.redColor {
  color: red;
}

.greenColor {
  color: green;
}

.bg-light {
  background-color: #EEEFF6;
}

.bg-warning {
  background-color: #F47C3C !important;
}

.cursor-pointer{
  cursor: pointer;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #323A45;
  overflow-x: hidden;
  overflow-y: auto; 
  overflow-wrap: break-word;
  background-color: #FBF9FB;
}        

html,
body {
height: 100%;
width: 100%;
}

b {
  font-weight: bold;
}

hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #afafaf;
}

h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
}

h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 600;
}

h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 200;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  list-style-type: none;
}

a {
  font-size: 14px;
  text-decoration: none;
  color: #323A45;
}
a:hover {
  text-decoration: none;
}


.text-muted{
  color: #7B7B7C !important;
}

.text-small {
  font-size: 0.9rem;
}

.fs-12 {font-size: 12px;}
.fs-13 {font-size: 13px;}
.fs-14 {font-size: 14px;}
.fs-16 {font-size: 16px;}
.fs-18 {font-size: 18px;}
.fs-20 {font-size: 20px;}
.fs-22 {font-size: 22px;}
.fs-24 {font-size: 24px;}
.fs-26 {font-size: 26px;}

.lh-1 {line-height: 1;}
.lh-15 {line-height: 1.5;}
.lh-2 {line-height: 2;}
.opacity50 {
  opacity: 0.5
}
.opacity60 {
  opacity: 0.6
}
.capitalize {
  text-transform: capitalize;
}
.pr-0 {
  padding-right: 0;
}

.operating-time-main-div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.operating-time-div {
  display: flex;
  flex-direction: column;
}

.input-style-box {
  display: flex;
  align-items: center;
}

.input-style-box input {
  width: 100px;
  padding: 5px;
  margin-right: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.temperature-slider {
  position: relative;
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  margin-top: 20px;
}

.ui-slider {
  position: relative;
  background: #e0e0e0;
  border: none;
  height: 10px;
  border-radius: 5px;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 24px; /* Custom thumb size */
  height: 24px;
  cursor: default;
  border-radius: 50%; /* Circular shape */
  background-color: #0085FF !important; /* Color of the thumb */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: none;
  display: flex;
  transform: translateY(-50%);
  line-height: 1.2;
  top: 50%;
  justify-content: center;
  align-items: center;
  color: #0085FF;
  font-size: 8px;
}

.ui-slider .ui-slider-range {
  position: absolute;
  height: 100%;
  background: #007bff;
  border-radius: 5px;
}

.form-group {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 1rem;
}

.temperature-scale {
  position: relative;
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.scale-tick {
  position: absolute;
  top: 0;
  width: 1px;
  height: 5px;
  background: #333;
}

.scale-label {
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  font-size: 12px;
  color: #333;
}
.temperature-slider {
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.slider-value {
  position: absolute;
  background: #095bff;
  color: #ffffff;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12px;
  z-index: 10;
  white-space: nowrap;
}
/* Buttons */
.btn {
  font-family: 'Roboto', sans-serif;
  border-radius: 6px;
  padding: 0.375rem 1rem;
  margin: 0.375rem;
  font-size: 14px;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
}

.btn-icon {
  padding: 0.375rem 0.5rem;
}

.btn-fa {
    border-radius: 50%;
    padding: 2px;
    background-color: white;
    color: #0085FF;
    margin-right: 10px;
}

.btn-group-toggle-full {
  display: flex;
}

.btn-group-toggle-full > .btn {
  flex: 1;
}

.btn-group-toggle > .btn {
  margin: 0.375rem 0;
}

.btn-group-toggle > .btn:not(:first-child) {
  border-top-left-radius: 0% !important;
  border-bottom-left-radius: 0% !important;
}

.btn-group-toggle > .btn:not(:last-child) {
  border-top-right-radius: 0% !important;
  border-bottom-right-radius: 0% !important;
}

.btn-group {
  white-space: normal;
}

.btn.focus, 
.btn:focus {
  /* box-shadow: 0 0 0 1px #afafaf; */
  box-shadow: none;
}

/* Button Clear */
.btn-clear {
  padding: 0.375rem 0;
  background-color: transparent;
  border: 1px solid transparent;
}

/* Primary Outline */
.btn-primary.btn-outline,
.btn-primary.btn-outline:focus {
  color: #0085FF;
  font-size: 13px;
  border-color: #0085FF;
  background-color: white;
}

.btn-primary.btn-outline:hover {
  color: white;
  border-color: #0085FF;
  background-color: #0085FF;
}


/* Primary No Outline Grey */
.btn-no-outline-grey,
.btn-no-outline-grey:focus {    
  border-radius: 0px !important;
  color: grey;
  font-size: 13px;
  font-weight: 500;
  background-color: transparent;
  border-bottom: 2px solid #cfcfcf;
}
.btn-no-outline-grey b {
  font-weight: 500;
}
.btn-no-outline-grey:hover {
  border-radius: 0px !important;
  color: #0085FF;
  background-color: transparent;
  border-bottom: 2px solid #0085FF;
  font-weight: 1200;
}

.btn-no-outline-grey:not(:disabled):not(.disabled):active,
.btn-no-outline-grey:not(:disabled):not(.disabled).active {
  border-radius: 0px !important;
  color: #0085FF;
  background-color: transparent;
  border-bottom: 2px solid #0085FF;
}

.btn-no-outline-active {
  border-radius: 0px !important;
  color: #0085FF;
  background-color: transparent;
  border-bottom: 2px solid #0085FF;
}

.btn-no-outline-active .h5 {
  font-weight: 900;
}


/* Primary No Outline */
.btn-primary.btn-no-outline,
.btn-primary.btn-no-outline:focus {
  color: #0085FF;
  border-color: transparent;
  background-color: transparent;
}

.btn-primary.btn-no-outline:hover {
  color: white;
  border-color: transparent;
  background-color: #0085FF;
}

/* Primary */
.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #0085FF;
  border-color: #0085FF;
  
}

.btn-primary:hover {
  background-color: #0085FF;
  border-color: #0085FF;
  color: #FFFFFF;
  box-shadow: 0px 3px 6px #0085FF5C;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #0085FF;
  border-color: #0085FF;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #0085FF;
border-color: #0085FF;
}



/* Warning Outline */
.btn-warning.btn-outline,
.btn-warning.btn-outline:focus {
  color: #f8ac59;
  border-color: #f8ac59;
  background-color: white;
}

.btn-warning.btn-outline:hover {
  color: white;
  border-color: #f8ac59;
  background-color: #f8ac59;
}


/* Warning */
.btn-warning,
.btn-warning:focus {
  color: #ffffff;
  background-color: #f8ac59;
  border-color: #f8ac59;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #f7a54a;
  border-color: #f7a54a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff;
  background-color: #f7a54a;
  border-color: #f7a54a;
}


.btn-edit-icon {
  color: black;
  border: 1px solid black;
  background-color: transparent;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
}

.btn-delete-icon {
  color: red;
  border: 1px solid red;
  background-color: transparent;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
}

.btn-reset-icon {
  color: #0085FF;
  border: 1px solid #0085FF;
  background-color: transparent;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
}

.btn-disable-icon {
  color: #8989A3;
  border: 1px solid #8989A3;
  background-color: transparent;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
}

/* Form-control */
.form-control{
  padding: 12px 20px;
  font-size: 14px;
  border: 1px solid #dddddd
}

.form-group > .form-control{
  padding: 12px 15px 12px 15px;
  }
  
.form-control:disabled {
    background-color: #A2A7B9 transparent !important;
}  

.form-control:disabled~label {
  bottom: 60px !important;
}
      
/* Input Field Status Border */
.input-field-error{
    border: 2px solid #ED5666;
}
.input-field-success{
    border: 2px solid #1ab394;
}

/* Pagination */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  border-color: #DDDDDD;
  cursor: default;
  z-index: 2;
}
.pagination > li > a,
.pagination > li > span {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  color: inherit;
  float: left;
  line-height: 1.42857;
  margin-left: -1px;
  padding: 4px 10px;
  position: relative;
  text-decoration: none;
}
.page-item.active .page-link {
  background-color: #0085FF;
  border-color: #0085FF;
}
.page-link:focus {
  box-shadow: none;
}
.page-link:hover {
  color: #676a6c;
}
.pagination .footable-page.active a {
  background-color: #0085FF;
  border-color: #0085FF;
  color: white;
}

/* Modal */
.modal-content {
    background-clip: padding-box;
    background-color: #FFFFFF;
    border: none;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    outline: 0 none;
    position: relative; 
    max-width: 100% !important; /* Ensure modal-content spans full dialog width */
    width: 100% !important;
}
#addEquipmentModal .modal-body#updateEquipmentLoading {
  position: relative;
  width: 100% !important; /* Override 70vw constraint */
  max-width: 100% !important;
  min-height: 300px; /* Ensure enough space for loader */
  width: 70vw !important;
  max-width: 70vw !important;
  box-sizing: border-box;
}
#addEquipmentModal .modal-dialog.modal-md-equipment {
  min-width: 70vw !important;
  width: 70% !important;
  max-width: 70% !important;
}

.modal-dialog {
    z-index: 2200;
}
.modal-body {
  padding: 0 30px;
  margin: 25px 0px 30px 0px;
  /* max-height: 75vh;  
  overflow-y: auto;  */
}

.select2-selection__clear {
color: #007bff; /* Example: Bootstrap's btn-primary blue */
font-size: 18px; /* Optional: adjust size if needed */
}

/* Optional: Hover effect */
.select2-selection__clear:hover {
color: #0056b3; /* Darker shade for hover, matching btn-primary hover */
}
#incidentPagenationBtn {
  position: sticky;
  bottom: 0; /* Sticks to the bottom of its parent container */
  background: #fff; /* Ensures readability over scrolling content */
  z-index: 10; /* Keeps it above table rows */
  padding: 1rem; /* Matches your p-4 (Bootstrap’s 1rem = 16px), but adjustable */
  border-top: 1px solid #dee2e6; /* Optional: adds a visual separator */
}

/* Ensure the parent container supports scrolling */
.table-scroll.customScroll {
  position: relative; /* Defines the sticky context */
  max-height: 95vh; /* Adjust based on your layout */
  overflow-y: auto; /* Enables vertical scrolling */
}

/* Optional: Adjust for smaller screens */
@media (max-width: 768px) {
  #incidentPagenationBtn {
      padding: 0.5rem; /* Reduce padding on mobile */
  }
}
.modal-header {
    padding: 0 30px;
    margin: 30px 0px 0px 0px;
}
.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.modal-header .closeBtn {
  position: absolute;
  background-color: #e0e0e0;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  right: 10px;
  padding: 0;
  top: 8px;
} 
.modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 0px 0px 30px 30px;
}

.delete-modal-header {
  padding: 0px 30px 0px 30px;
  margin: 30px 0px 0px 0px;
}

.delete-modal-body {
  padding: 0px 30px 0px 30px;
  margin: 25px 0px 30px 0px;
}

.inmodal .modal-body {
    background: #f8fafb;
}
.inmodal .modal-header {
    padding: 30px 60px;
    text-align: center;
    display: block;
}
.animated.modal.fade .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.inmodal .modal-title {
    font-size: 26px;
}
.inmodal .modal-icon {
    font-size: 84px;
    color: #e2e3e3;
}
.modal-footer {
    margin-top: 0;
}
.modal-lg{
  max-width: 60% !important;;
}
.modal-xl{
  max-width: 80% !important;;
}
.modal-md{
  max-width: 45% !important;
}
.modal-md-equipment{
  max-width: 50% !important;
}
.modal-md-role {
  max-width: 35% !important;
}
.modal-missing-data {
  max-width: 20% !important;
}
.modal-md-profile {
  max-width: 30% !important;
}
/* Right side Modal */
.rightModal {
  transform: translateX(100%);
  transition: all 0.3s;
}
.rightModal.show {
  transform: translateX(0%);
}
.modal-backdrop {
  left: 100%;
  transition: all 0.2s;
}
.modal-backdrop.show {
  opacity: 0.7;
  left: 0;
}
#addLocationModal .modal-footer {
  position: sticky;
  bottom: 0;
  background-color: #fff; /* Ensures background matches modal */
  z-index: 10; /* Keeps it above other content */
  padding-left: 0; /* Maintains your original pl-0 */
  /* border-top: 1px solid #dee2e6; Optional: matches Bootstrap default */
  /* box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); Optional: subtle shadow for separation */
}
.rightModal .modal-dialog {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  max-width: 38vw;
  width: 100%;
}
.rightModal .modal-content {
  min-height: 100%;
}
.events {
  margin: 5px; 
  width: 70%; 
}

.events li { 
  display: flex; 
  color: #17244FFA;
}

.events time { 
  min-width: 150px;
  position: relative;
  padding: 20px 15px 20px 0px;
  font-size: 13px;
}

.events time::after { 
  content: "";
  position: absolute;
  z-index: 2;
  right: 30px;
  margin-top: -10px;
  transform: translateX(50%);
  border-radius: 50%;
  background: #ccc;
  border: 1px #ccc solid;
  width: 15px;
  height: 15px;
}
.events .incidenDetailmsg {
  width: 800px;
  padding:20px 15px 20px 25px;
  position: relative;
  font-size: 13px;
}
.events span {
  padding: 20px 15px 20px 25px;
  position: relative;
  font-size: 13px;
}

.events span::before {
  content: "";
  position: absolute;
  z-index: 1;
  margin-top: 20px;
  left: -30px;
  height: 100%;
  border-left: 1px #ccc solid;
}

.events strong {
  display: block;
  font-weight: bolder;
}

.events,.events *::before,.events *::after { 
  box-sizing: border-box; 
  font-family: arial;
}

/* Shift Timeline Styles - Similar to incident events timeline */
.shift-timeline-container {
  margin-top: 10px;
}

.shift-timeline-events {
  margin: 5px;
  width: 100%;
  list-style: none;
  padding: 0;
}

.shift-timeline-events li {
  display: flex;
  color: #17244FFA;
}

.shift-timeline-events time {
  min-width: 120px;
  position: relative;
  padding: 20px 15px 20px 0px;
  font-size: 13px;
}

.shift-timeline-events time::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 30px;
  margin-top: -10px;
  transform: translateX(50%);
  border-radius: 50%;
  background: #ccc;
  border: 1px #ccc solid;
  width: 15px;
  height: 15px;
}

.shift-timeline-events .timeline-event-content {
  padding: 20px 15px 20px 25px;
  position: relative;
  font-size: 13px;
}

.shift-timeline-events .timeline-event-content::before {
  content: "";
  position: absolute;
  z-index: 1;
  margin-top: 20px;
  left: -30px;
  height: 100%;
  border-left: 1px #ccc solid;
}

.shift-timeline-events .shift-timeline-event-label {
  padding: 20px 15px 20px 25px;
  position: relative;
  font-size: 13px;
}

.shift-timeline-events,.shift-timeline-events *::before,.shift-timeline-events *::after { 
  box-sizing: border-box; 
  font-family: arial; 
} 
/* Notification Modal */
.notification-modal {
  position: absolute;
  top: -20px;
  left: auto;
  right: 50px;
  max-width: 500px;
  margin: 0;
  overflow-y: hidden !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background-color: white;
  border-radius: 8px;
}

.notification-modal .modal-dialog {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  max-width: 30vw;
  width: 100%;
}
.notification-modal .modal-content {
  border-color: white;  
  border-radius: 8px;
  box-shadow: none;
}

.notifi-view {
  padding: 10px 15px; 
}

.notification-unread-bg {
  background-color: rgba(0, 174, 239, 0.1);
}
  
.modal-body-notifi {
  padding: 0px 30px 0px 15px;
  margin: 10px 0px 0px 0px;
  max-height: calc(100vh - 250px);
  overflow-y: scroll;
}  
  .mark-all-read {
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  color: blue;
  }
  
  .notifi-text {
    text-align: left;
    font-size: 13px;
    letter-spacing: 0px;
    color: #162350;
    opacity: 1;
  }
  .show-more-text {
    font-size: 13px;
    text-align: center;
    color: #0085FF;
  }
  .notifications-header {
    margin: 15px 0px 0px 0px !important;
  }
  
  .notification-zero-state {
  text-align: center;
  letter-spacing: 0px;
  color: #17244F;
  opacity: 1;
  }

  #alert-dot {
    height: 10px;
    width: 10px;
    background-color: #0085FF ;
    border: 1px solid #F0F0F0;
    border-radius: 50%;
    position: absolute;
    transform: translate3d(-100%, 30%, 0);
    display: none;
    opacity: 1;
  }

  .notifi-alert-view {
    display: inline !important;
  }

  .acknowledgment-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 12px;
    color: #0085FF;
  }

  .acknowledgment-hint .material-icons {
    font-size: 14px;
  }

/* Select layout changes */
select {
  padding: 10px;
}

/* Select2 Layout changes */
.select2-selection--single, 
.select2-selection--multiple {
    height: 100% !important;
}

.select2-container .select2-selection--multiple {
  min-height: 50px;
}

.select2-selection__rendered{
    word-wrap: break-word !important;
    text-overflow: inherit !important;
    white-space: normal !important;
}

.dashboard-temptable-select {
  padding: 0px !important;
}
.dashboard-temptable-select .select2-container .select2-selection--multiple {
  min-height: 30px !important;
  padding-top: 0px !important;
}


/* Table */
.table {
  border-collapse: separate;
  border-spacing: 0px;
  margin-bottom: 0rem;
}

.table thead {
  display: table; 
  width: 100%;
  border-bottom: 0px;
}

.table th {
  border-top: 1px solid transparent;
}

th:first-child {
  border-radius: 10px 0 0 0;
}

th:last-child {
  border-radius: 0 10px 0 0;
}

.table thead th {
  background-color: #FBF9FB !important;
  border-bottom: 0px solid transparent;
  padding: 15px;
}

.table tbody {
  background-color: white !important;
  display: block; 
  max-height: 500px; 
  overflow-y: scroll; 
  border-radius: 20px;
}

.table tbody::-webkit-scrollbar {
  display: none;
}

.table tbody tr {
  display: table; 
  width: 100%;
}

.table tbody td {
  border-bottom: 1px solid black;
  border-top: 1px solid transparent;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: white !important;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: white !important;
}

.table-borderless {
  border-collapse: collapse;
}

.table-borderless th {
  border-top: 0px solid transparent;
}

.table tbody td {
  border-bottom: 0.1rem solid lightgrey;
  border-top: 0px solid transparent;
}

.table-borderless th:first-child {
  border-radius: 0;
}

.table-borderless th:last-child {
  border-radius: 0;
}

tfoot td {
  border: 1px solid transparent !important;
}

/* Pace */
.pace-done .navbar-static-side,
.pace-done .rightbar-container,
.pace-done .nav-header,
.pace-done li.active,
.pace-done #page-wrapper,
.pace-done .footer {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

/* Sweet Alert */
/* .sweet-alert button {
  background-color: #0085FF !important;
} */

.sweet-alert button.cancel {
  background-color: #6c757d !important;
}


/* form floating label */
.form-select {
  font-size: 13px;
}
.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  /* height: calc(3.5rem + 2px); */
  height: calc(1.25em + 1.5rem + 2px);
  padding: 0.5rem 0.75rem;
}
.form-floating > label {
  font-size: 1rem;
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
  padding: 0.6rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  white-space: nowrap;
}
.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, 
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  font-size: 0.9rem;
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.mandatory::after {
  content: '*';
/*  color: red;*/
  margin-left: 2px;
}


#loaderPage {
  min-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: #FFFFFF;
}
#loaderPage img {
  transform: scale(0.5);
}
.logo-center {
  margin-top: 150px;
}

#loaderPage .logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.login-text {
  font: normal normal normal 12px/13px Montserrat;
  letter-spacing: 3.82px;
  color: #162350;
  text-transform: capitalize;
  opacity: 1;
}

.login-header {
  font-weight: bold;
  text-align: center;
  font: normal normal bold 30px/40px Montserrat;
  letter-spacing: 0px;
  color: #0085FF;
  opacity: 1;
}

.login-label {
  text-align: center;
  font: normal normal normal 12px/22px Montserrat;
  letter-spacing: 0px;
  color: #64686D;
  opacity: 1;
}

.login-box {
  background: linear-gradient(95deg, #65CAF0, #00AEEF);
  padding: 15px;
}

.email-form {
  margin-left: 38%;
}

.btn-login {
  width: 100%;
  background: transparent linear-gradient(90deg, #006EB9 0%, #00AFEE 100%) 0% 0% no-repeat padding-box;
  border: 1px solid transparent;
  line-height: 2.5;
  margin: 0px !important;
}

.login-change-btn {
  width: 100%;
  line-height: 2.5;
  margin: 0px !important;
}

/* App CSS */
#wrapper {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: #F7F7F7;
}

#page-wrapper {
    position: relative;
    flex-shrink: 1;
}

#body-wrapper {
  margin-left: 250px;
    padding: 30px 30px;
    height: calc(100vh - 85px);
    width: calc(100vw - 230px);
  overflow-y: scroll;
}



/* Side Menu */
.navbar-static-side {
  position: absolute;
  top: -70px;
  left: 0px;
  background-color: white;
  width: 260px;
  height: calc(100vh - 0px);
  box-shadow: 0px 12px 24px #ECEEF5;
  /* border-radius: 0px 41px 0px 0px; */
}

.nav-label {
  font-size: 15px;
  padding-left: 15px;
  display: inline;
  vertical-align: middle;
}

#side-menu {
  padding: 90px 10px 0;
}

.sidebar-footer > p {
  padding: 10px;
  padding-top: 100px;
  text-align: center;
  font-size: 12px;
  color: #8a8a8a;
}

#side-menu img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  filter: invert(50%) sepia(95%) saturate(0%) hue-rotate(155deg) brightness(106%) contrast(106%);
}

#side-menu > li {    
  display: block;
  width: 100%;
  position: relative;
}


#side-menu > li > a {
  display: block;
  color: #585757;
  height: 54px;
  margin: 0;
  padding: 15px 15px;
  border-radius: 8px;
}

#side-menu > li > a.active {
  background-color: rgba(0,133,255,0.2);
  color: #585757;
  font-weight: 500;
}

#side-menu > li > a.active img {
  filter: sepia(100%) hue-rotate(190deg) saturate(500%);
}


#side-menu > li > a:hover,
#side-menu > li > a:focus {
  text-decoration: none;    
  /* background-color: #0085FF; */
}

footer > p {
  position: absolute;
  width: 100%;
  bottom: 20px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: #8a8a8a;
}

.logo {
  max-width: 160px !important; 
  margin-left: 0px;
}

/* Top Bar */
.navbar-static-top {
  height: 70px;
  background-color: #0085FF;
  vertical-align: middle;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 0.5rem 1rem;
  z-index: 99;
}

.navbar-header img {
  height: 70px;
  margin: 10px 0;
  padding: 0;
}

.navbar-static-top li {
  padding: 0 10px;
}

.user-image {
  width: 40px;
  height: 40px;
  object-fit: fill;
  border-radius: 50%;
  background-color: #0085FF;
}

.user-image-equipment {
  width: 40px;
  height: 40px;
  object-fit: fill;
  border-radius: 50%;
}

.settings-user-image {
  width: 40px;
  height: 40px;
  object-fit: fill;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #0085FF;
}
.inactive-dot {
  height: 11px;
  width: 11px;
  background-color: #D10000;
  border: 2px solid #F0F0F0;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-90%, 30%, 0);
  margin-top: 22px;
}

.active-dot {
  height: 11px;
  width: 11px;
  background-color: #00D168;
  border: 2px solid #F0F0F0;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-90%, 30%, 0);
  margin-top: 24px;

}

.profile-image {
  width: 100%;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  object-fit: fill;
  border-radius: 50%;
  border: 6px solid #0085FF;
  background-color: #0085FF;
}

#top-bar > ul > li > a {
  color: #fff;
}

#top-bar > ul > li > a:hover,
#top-bar > ul > li > a:focus {
  color: black;
  text-decoration: none;    
}

.btn-nav {
  background-color: white;
  color: black;
  padding: 0.375rem 0.5rem;
}

.btn-nav img {
  height: 25px;
  width: auto;
}

.btn-dropdown {
  margin: 0;
  padding: 0.375rem 0.5rem;
  color: #fff;
  box-shadow: none;
}

.topbar-line {
  padding-right: 50px;
}

/** footer view **/
.footer {
  width: calc(100vw - 260px - 120px);
  padding: 20px;
  position: fixed;
  top: calc(100vh - 90px);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px -12px 24px #ECEEF5;
  border-radius: 15px 15px 0px 0px;
  opacity: 1;
}

.checkbox-p {
  margin-right: 25px;
}

/** zero state view **/
.zero-state-view {
  padding-top: 80px;
}

.zero-state-img {
  padding-bottom: 30px;
}

.zero-state-lab-1 {
  color: #17244F; 
  opacity: 0.8; 
  margin-bottom: 12px;
}

.zero-state-lab-2 {
  color: #17244F; 
  opacity: 0.5;
}

/** Dashboard Page **/
.equipment-temperature-card {
  background-color: white;
  box-shadow: 0px 12px 12px #ECEEF5;
  border-radius: 8px;
  height: 330px;
  display: grid;
  padding: 15px;
}

.equipment-temperature-card canvas {
  width: 100% !important;
  height: auto !important;
  max-height: 300px;
}


.dashboard-count-view {
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.dashboard-count-view  a {
  color: #0071BC !important;
  font-weight: 500;
  font-size: 13px;
}
.dashboard-count-view label {
  color: #000000;
  opacity: 0.4;
}
.dashboard-count-view.total {
  background-color: #ECF7FF;
}
.dashboard-count-view.online {
  background-color: #E4FFEC;
}
.dashboard-count-view.offline {
  background-color: #FFCACC;
}

.dashboard-count-view.light-grey {
  background-color: #ECEEF5; /* light grey */
}

/* Active Alarm override */
#activeAlarmCard.dashboard-active-alarm {
  background-color: #FFF6F6 !important;
  border: 1px solid #FF7C76;
  box-shadow: 0px 12px 12px #ECEEF5;
}

.dashboard-active-alarm {
  background-color: #FFF6F6;
  border: 1px solid #FF7C76;
  box-shadow: 0px 12px 12px #eceef5;
  color: #585757;
  border-radius: 8px;
  opacity: 1;
  max-height: 200px;
  padding: 20px;
}
.dashboard-active-alarm a, .dashboard-disactive-alarm a {
    color: #0071BC;
    font-weight: 500;
    font-size: 13px;
}
.dashboard-disactive-alarm {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 24px #ECEEF5;
  color: #17244F;
  opacity: 1;
  border-radius: 4px;
  max-height: 200px;
  padding: 20px;
}

.dashboard-equipment-card {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 8px;
  opacity: 1;
  max-height: 200px;
  padding: 10px;
}

.alarm-font {
  text-align: left;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0px;
  color: #D71306;
  line-height: 1;
  opacity: 1;
}

.alarm-font-black {
  text-align: left;
  font: normal normal 600 55px Roboto;
  letter-spacing: 0px;
  color: black;
  opacity: 1;
}

.dashboard-equipment-offline {
  background: transparent linear-gradient(135deg, #FF4A44 0%, #B31217 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #B312175C;
  border-radius: 4px;
  opacity: 1;
}

.out-of-range-card {
  background-color: #F44336 !important; 
  color: #fff !important;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600; 
  text-align: center;
}

.within-range-card {
  background-color: #4CAF50 !important;
  color: #fff !important;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
}

.col-temp-table {
  max-width: 11.40% !important;
}

.incident-font {
  text-align: right;
  font: normal normal 600 30px/40px Roboto;
  letter-spacing: 0px;
  color: #585757 !important;
  opacity: 1 !important;
}

.incident-font-white {
  text-align: right;
  font: normal normal 600 30px/40px Roboto;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}

.incident-text {
  text-align: left;
  font: normal normal 600 14px/15px Roboto;
  letter-spacing: 0px;
  color: #17244FFA;
}

.incident-label {
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #000000;
  opacity: 0.6;
}

.dashboard-incident-card {
  padding: 20px 25px;
  background-color: #FFFFFF;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 8px;
  height: 300px;
}

.dashboard-icident-label-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px;
  height: 80px;
}
.dashboard-icident-label-card a {
  color: #0071BC;
  font-weight: 500;
  font-size: 13px;
}
.newIncident .green {
  color: #00BA34 !important;
}
.newIncident .red {
  color: #D71306 !important;
}
.dashboard-business-card {
  padding: 20px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 8px;
  opacity: 1;
}

.dashboard-repair-cost-card {
  padding: 15px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 8px;
  height: 330px;
  opacity: 1;
}

.dashboard-table-card {
  background-color: #FFFFFF !important;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 8px;
  opacity: 1;
  height: 330px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.dashboard-table-card .table thead th {
  background-color: white !important;
}

.offline-color {
  background-color: #B31217; 
  color: #FFFFFF;
}

/*.offline-color-zero {
  background-color: #ECEEF5;
  color: black;
}*/

.dashboard-equipment-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 3em; 
}

.dashboard-location-name {
  text-align: left;
  font: normal normal normal 12px/15px Roboto;
  letter-spacing: 0px;
  color: #969696;
}

.equipment-text-offline {
  text-align: right;
  font: normal normal normal 16px/19px Roboto;
  letter-spacing: 0px;
  color: #D50000;
  opacity: 1;
}

.equipment-text-unassigned {
  text-align: right;
  font: normal normal normal 16px/19px Roboto;
  letter-spacing: 0px;
  color: #17244F;
  opacity: 0.5;
}

.zero-state-header {
  font: normal normal 600 18px/22px Roboto;
  letter-spacing: 0px;
  color: #17244F;
  opacity: 0.6;
  margin-bottom: 10px;
  font-size: 15px;
}

.zero-state-label {
  font: normal normal normal 14px/22px Roboto;
  letter-spacing: 0px;
  color: #17244F;
  opacity: 0.5;
}

.battery-text {
  text-align: left;
  font: normal normal normal 14px/18px Roboto;
  letter-spacing: 0px;
}

.dashboard-add-btn {
  text-align: left;
  font: normal normal normal 16px/19px Roboto;
  letter-spacing: 0px;
  color: #0085FF;
  opacity: 1;
}

.dashboard-business-view {
  padding: 20px 15px 20px 15px !important;
}

.dashbaoed-equipment-zero-state-text {
  text-align: center;
  font: normal normal normal 14px/22px Roboto;
  letter-spacing: 0px;
  color: #17244F;
  opacity: 0.5;
}

/** Business Page **/
.business-view-btn-active {
  color: #000000;
  background-color: #D6D7D9;
  border-color: #D6D7D9;
}

.details-view-image {
  width: 100%;
  height: 50px;
  min-width: 50px;
  max-height: 50px;
  object-fit: fill;
  border-radius: 10px;
  border: 2px solid #0085FF;
  background-color: #0085FF;
}

/** Location Page **/

.pac-card {
  margin: 15px 0 0 10px;
  z-index: 1000 !important;
  width: 60%;
}

.pack-card {
  margin: 15px 0 0 10px;
  z-index: 1000 !important;
  width: 60%;
}

#mlocation_detailsView {
  background-color: #fff;
}

#mlocation_detailsView img {
  border: 1px solid #ddd;
}

#mlocation_detailsView .border-bottom:last-child {
  border-bottom: none !important;
}

#locationModalMap {
  width: 95%;
  height: 200px;
  margin: 15px;    
  border-radius: 8px;
}

#mlocationModalMap {
  width: 95%;
  height: 200px;
  margin: 15px;    
  border-radius: 8px;
}

.switch-small {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
.switch-small input { display: none; }
.slider-small {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: .4s;
}
.slider-small:before {
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background: white;
    position: absolute;
    border-radius: 50%;
    transition: .4s;
}
input:checked + .slider-small { background-color: #2196F3; }
input:checked + .slider-small:before { transform: translateX(20px); }

.small-text { font-size: 14px; color: #333; }
.radius-btn-small {
    width: 30px;
    height: 31px;
    border: 1px solid #ddd;
    background: white;
    font-size: 14px;
    padding: 0;
}

.location-view {
  background-color: #fff;
  /* padding: 20px 40px; */
  border:1px solid #169AF3;
  margin: 15px -27px -15px -27px;
}
ul.location-view li:not(:last-child) {
  border-bottom: none;
  margin-bottom: 0.5rem;
}
ul.location-view li {
  padding: 5px 0
}
ul.location-view li .checkbox {
  margin-right: 10px;
}

.location-collapse {
  padding-bottom: 10px;
  margin: 0;
} 

/** Micro-Location Page **/
/* ---------- Modal General ---------- */
#selectMicroLocationModal .modal-content {
  border-radius: 14px;
  padding: 8px 20px 20px;
  background-color: #fff;
}

/* ---------- Header ---------- */
#selectMicroLocationModal h4,
#selectMicroLocationModal h3 {
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

#selectMicroLocationModal h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1d2b5f;
}

#selectMicroLocationModal h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* ---------- Business Group Title ---------- */
.BusinessName {
  font-weight: 500;
  font-size: 14px;
  color: #6b7280;
  margin: 12px 4px;
}

/* ---------- Micro Location Card ---------- */
.microLocation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.06);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.microLocation-card:hover {
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* ---------- Left Content (Image + Info) ---------- */
.left-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Image */
.microLocation-img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Info Section */
.microLocation-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.microLocation-info .microLocation-Name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.microLocation-info .microLocation-Address {
  font-size: 13px;
  color: #6b7280;
}

/* ---------- Arrow ---------- */
.arrow {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  flex-shrink: 0;
}

.arrow svg {
  width: 100%;
  height: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 576px) {
  .microLocation-card {
    padding: 12px 14px;
  }
  .microLocation-img {
    width: 48px;
    height: 48px;
  }
  .microLocation-info .microLocation-Name {
    font-size: 14px;
  }
  .microLocation-info .microLocation-Address {
    font-size: 12px;
  }
}

/* Operating time states for equipment */
.location-collapse.out-of-operating-time {
  background-color: #f5f5f5;
  opacity: 0.6;
  border-radius: 4px;
  padding-bottom: 10px;
  margin: 0;
}

.location-collapse.out-of-operating-time .equipmentData {
  color: #666;
}

.location-collapse.out-of-operating-time .checkbox {
  opacity: 0.7;
  cursor: pointer;
}

.location-collapse.out-of-operating-time .lastUpdatedat {
  color: #666;
}

/* Map view equipment operating time states */
.equi-data-card.out-of-operating-time {
  background-color: #f5f5f5;
  opacity: 0.6;
  border-radius: 4px;
}

.equi-data-card.out-of-operating-time .equi-header {
  color: #666;
}

.equi-data-card.out-of-operating-time .equi-body label {
  color: #666;
}

.location-collapse .select-view {
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 6px;
    height: 32px !important
  }

.location-collapse-equipment{
  padding-bottom: 10px;
  border:1px solid #d5d5d5;
  margin-left: 0 !important;
    margin-right: 0 !important;
}
.location-collapse-equipment .select-view {
  font-size: 12px;
  border-radius: 6px;
  height: 32px !important
}
.add-equipmet {
  padding: 8px 10px;
  color: #0085FF;
}
/*
.location-table-view {
  height: 40px;
  padding-right: 25px;
  border-right: 1px solid #BCBCBC;
}
*/
.location-search-view {
  margin-top: 16px !important;
}

.microLocation-search-view {
  margin-top: 16px !important;
}

#dashMap {
  margin: 20px 15px 15px 15px;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 8px;
}

#dashMaps {
  margin: 20px 15px 15px 15px;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 8px;
}

/* Right-side panel */
.mlocation-microloc-card {
  background: #fff;
  padding: 20px;
  height: 100%;
  overflow-y: auto;
  border-left: 1px solid #e5e5e5;
}

/* Header */
.ml-panel-header h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.ml-panel-header p {
  margin: 4px 0 2px;
  color: #6b7280;
  font-size: 14px;
}

.ml-total {
  font-size: 13px;
  font-weight: 600;
  color: #0085ff;
}

/* List item */
.ml-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.ml-item-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
}

.ml-item-img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: #e0e0e0;   /* Add this */
    padding: 5px;          /* Optional: make white icon visible */
}

.ml-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.btn-close::before {
  content: "×";
  font-size: 28px;
  color: #000;
  font-weight: bold;
}

.btn-close {
  opacity: 1 !important;
  background: none !important;
  width: auto;
  height: auto;
}

/* Add Micro-location button */
.ml-add-btn {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0085ff;
  cursor: pointer;
}

#businessDashMap {
  margin: 20px 15px 15px 15px;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 8px;
}

.btn-fa-location {
  border-radius: 50%;
  padding: 0px;
  background-color: #fff;
  color: #0085FF;
  margin-right: 0px;
  cursor: pointer;
}

.btn-fa-equipment {
  border-radius: 50%;
  padding: 2px;
  background-color: black;
  color: white;
}

.info-window {
  padding: 5px;
  width: 300px;
}

.location-equi-card {
  margin-top: 20px;
  margin-left: 5px;
  padding: 20px 30px;
  height: 560px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 0px 16px 16px 0px;
  opacity: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
}

.location-equi-card::-webkit-scrollbar {
  display: none;
}

.equi-data-card {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  opacity: 1;
}

.equi-header {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 10px;
  background-color: #00A1ED;
  color: #FFFFFF;
}

.equi-body {
  padding: 10px;
}

.img-line {
  border-left: solid 1px lightgrey;
}

.hide-arrow {
  position: absolute;
  background-color: #efefef;
  padding: 10px;
  border-radius: 50%;
  color: #232323;
  left: -18px;
  width: 40px;
  height: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  top: 50%;
  transform: translate(0%, -50%);
  opacity: 1;
}

.temp-label {
  font: normal normal normal 22px/21px Montserrat; 
  letter-spacing: 0px; 
  color: #252A33; 
  opacity: 1;
  font-size: 22px;
}

.location-user-image {
  width: 30px;
  height: 30px;
  object-fit: fill;
  border-radius: 50%;
  border: 3px solid #0085FF;
  background-color: #0085FF;
}

.location-view-btn-active {
  color: #000000;
  background-color: #D6D7D9;
  border-color: #D6D7D9;
}

.file-details-card {
  border-radius: 8px;
  background-color: #E6F3FF;
  margin-bottom: 10px;
  opacity: 1;
  padding: 12px;
}

.file-text {
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.29px;
  color: #162350;
  opacity: 0.8;
}

.download-text {
  text-align: left;
  text-decoration: underline;
  font-size: 12px;
  letter-spacing: 0px;
  color: #0085FF;
  opacity: 1;
}

.file-text-view {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1em;
  max-height: 1.4em; 
}

.location-image {
  width: 100%;
  height: 60px;
  max-width: 120px;
  max-height: 60px;
  object-fit: fill;
  border-radius: 4px;
  border: 1px solid #0085FF;
  background-color: #0085FF;
}

/** Equipment Page**/

input:focus::placeholder {
  opacity: 1;
  transition-property: all;
}

.btn-view {
  width: 100% !important;
}

.card-view {
  /* background-color: white; */
  border: none;
  border-radius: 0px;
}
.cardBorder {
  border: 1px solid #e3e3e3 !important;
}

.select-view {
  font-size: 14px;
  top: 421px;
  left: 348px;
  width: 176px;
  height: 40px !important;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #D3D3D3;
  border-radius: 4px;
  opacity: 1;
}
.input-date {
  background-image: url('/img/calendar_today_black.svg');
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 20px 20px;
}

.bootstrap-datetimepicker-widget .datepicker-days table tbody tr:hover {
  background-color: #eee;
}
.row-view {
  padding: 10px;
  font-size: 13px;
  margin: 0px !important;
}
.scroll-bar {
  position: relative;
  width: 100%;
}

.table-scroll {
  position: relative;
  left: 0;
  top: 0;
  height: 100%; 
  width: 100%;
  overflow: auto;
  height: calc(100vh - 280px);
}
.customScroll::-webkit-scrollbar, 
.customScrollSchedule::-webkit-scrollbar, 
.location-scroll::-webkit-scrollbar,
.user-list-container::-webkit-scrollbar,
.assigned-user-list-container::-webkit-scrollbar,
.shiftPreviewScroll::-webkit-scrollbar {
  width: 8px;
}
.customScroll::-webkit-scrollbar-track, 
.customScrollSchedule::-webkit-scrollbar-track, 
.location-scroll::-webkit-scrollbar-track,
.user-list-container::-webkit-scrollbar-track,
.assigned-user-list-container::-webkit-scrollbar-track,
.shiftPreviewScroll::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}
.customScroll::-webkit-scrollbar-thumb, 
.customScrollSchedule::-webkit-scrollbar-thumb, 
.location-scroll::-webkit-scrollbar-thumb,
.user-list-container::-webkit-scrollbar-thumb,
.assigned-user-list-container::-webkit-scrollbar-thumb,
.shiftPreviewScroll::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.table-ul {
  padding-left: 12px;
  padding-right: 12px;
}

.table-scroll > .table-ul {
  background-color: white;
  border: none;
  box-shadow: 0px 12px 24px #ECEEF5;
  margin-bottom: 20px;
}

.table-scroll > .table-ul li {
  padding-top: 10px ;
}

.table-scroll > .table-ul li:last-child {
  border-bottom: none !important;
}

.filter-card {
  padding: 20px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 6px;
  border: 1px solid #d5d5d5;
  /* margin-left: 0px; */
  font-size: 13px;
}
.filter-card.set-h1 {
  min-height: 100px;
}
.filter-card h5 {
  margin-bottom: 0;
  font-size: 16px;
}
.filter-card.alertsGenerated.active {
  background-color: rgba(215, 19, 6, 0.1);
}
.filter-card.alertsGenerated.active span {
  color: #D71306;
  font-size: 16px;
  font-weight: 700;
}
.filter-card.alertsGenerated {
  background-color: #E4FFEC;
}
.filter-card.alertsGenerated span {
  color: #00BA34;
  font-size: 16px;
  font-weight: 700;
}
.filter-card b {
  font-size: 16px;
  color: #606365;
  font-weight: 700;
}
#equipmentViewDetailsModalBody .select-view {
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 6px;
  height: 32px !important
}
/*.count-view {
  padding: 10px 16px 10px 16px;
  background-color: #F1F1F1;
  border-radius: 4px;
}*/

.count-view-btn {
  padding: 10px 11px 10px 11px;
  background-color: #F1F1F1;
  border-radius: 4px;
}

.count-equipment-view {
  padding: 10px 22px 10px 22px;
  background-color: #F1F1F1;
  border-radius: 4px;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 15px;
  height: 15px;
  line-height: 25px;
  text-align: center;
  pointer-events: none;
  color: grey;
}

.bootstrap-datepicker-widget tr:hover {
  background-color: #808080;
}


.header-checkbox {
  padding-left: 30px !important; 
}

.body-checkbox {
  padding-left: 35px !important;
}

.input-search {
  height: 40px;
  background-color: #FBF9FB;
  padding-left: 35px;
  margin-top: -40px;
  margin-left: -10px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.search-icon {
  margin-top: -15px;
}

.chart-view {
  background-color: #FBF9FB;
  padding: 50px;
}

.arrow-down {
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.arrow-icon {
  margin-top: -4px;
  position: absolute;
  right: 20px;
  opacity: 0.4;
  transition: all 0.6s;
}

.text-right {
  text-align: right;
}

.equipment-image {
  height: 55px;
  max-width: 65px;
  object-fit: fill;
  border-radius: 10px;
  border: 1px solid #0085FF;
  background-color: #0085FF;
}

.details-view-image {
  width: 100%;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  object-fit: fill;
  border-radius: 10px;
  border: 2px solid #0085FF;
  background-color: #0085FF;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #0085FF;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0085FF;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.text-left{
  text-align: left;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.btn-check:active+.btn-outline-primary, 
.btn-check:checked+.btn-outline-primary, 
.btn-outline-primary.active, 
.btn-outline-primary
.dropdown-toggle.show, 
.btn-outline-primary:active {
  color: #000000;
  background-color: #D6D7D9;
  border-color: #D6D7D9;
}

.btn-outline-primary {
  color: #D6D7D9;
  border: 1px solid #D6D7D9;
}

.btn-outline-primary:hover {
  color: #000000;
  border: 1px solid #D6D7D9;
  background-color: #D6D7D9;
}

.alarms-font {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-16)/var(--unnamed-line-spacing-19) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing-0);
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  letter-spacing: 0px;
  color: #909090;
  opacity: 1;
}

/** Incident Page **/
.incident-label-color {
  color: #323A45;
  opacity: 0.4;
}

.newStatus {
  background-color: #D50000;
  opacity: 1;
  color: #FFFFFF;
}

.inProgressStatus {
  background-color: #0D66D0;
  opacity: 1;
  color: #FFFFFF;
}

.resolvedStatus {
  background-color: #00875A;
  opacity: 1;
  color: #FFFFFF;
}

.canceledStatus {
  background-color: #8F8F8F;
  opacity: 1;
  color: #FFFFFF;
}

.onHoldStatus {
  background-color: #FA862C;
  opacity: 1;
  color: #FFFFFF;
}

.default-color {
  background-color: white;
  color: black;
}

.notes-name-text {
  text-align: left;
  font: normal normal 600 16px/24px Montserrat;
  letter-spacing: 0.26px;
  color: #0085FF;
}

/**Reports Page **/
.report-card {
  background-color: #FFFFFF;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 10px;
  opacity: 1;
  padding: 40px;
}

.report-card-icon {
  min-height: 44px;
}
.report-card p {
  margin-bottom: 0;
  min-height: 63px;
}
.report-heading {
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #585858;
  opacity: 1;
  margin-top: 15px;
}

.filter-card {
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px #F2F3F6;
  border-radius: 8px;
  opacity: 1;
  padding: 20px;
}

.report-selectPicker {
  height: 52px !important;
  padding: 12px;
}

.report-temperature-row-view {
  border-bottom: solid 1px lightgrey;
  padding: 0px 15px;
  /* margin-bottom: 20px; */
}

.incident-report-label-text {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #000;
  opacity: 0.4;
}

.incident-report-label-content {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #17244F;
  opacity: 1;
}

/** Users Page**/
.user-card {
  padding: 15px;
  background: #FFFFFF;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 6px;
  border: none;
}
.user-card.bg-blue {
  background-color: #ddefff !important
}
.add-business-view {
  color: #0085FF;
  font-size: 16px
}

.user-view {
  padding: 15px;
  margin-bottom: 0px;
}

.form-group {
  position: relative;
  padding: 10px 0;
}

.form-group > label {
  font-size: 14px;
  position: absolute;
  top: 22px;
  left: 11px;
  padding: 0px 5px;
  pointer-events: none;
  border: 0px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  white-space: nowrap;  
  color: #162350;
  opacity: 0.5;
}

.form-group > .form-control::placeholder,
.select2 ~ label {
  color: transparent;
}

.form-group > .form-control:focus ~ label,
.form-group > textarea:not(:placeholder-shown) ~ label,
.form-group > input:not(:placeholder-shown) ~ label,
.select2-placeholder-hidden ~ label {
  opacity: 1;
  transform: scale(0.8);
  top: 1px !important;
  left: 11px !important;
  z-index: 10;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
  color: #0085FF;
}

.iti input:not(:placeholder-shown):not(:disabled),
.form-group > input:not(:placeholder-shown),
.form-group > textarea:not(:placeholder-shown),
.form-group > .select2-placeholder-hidden .select2-selection--single,
.form-group > .select2-placeholder-hidden .select2-selection--multiple {
  border-color: #0085FF;
}

span.select2-selection.select2-selection--single,
span.select2-selection.select2-selection--multiple,
.select2-container--default .select2-search--dropdown .select2-search__field,
.iti--separate-dial-code .iti__selected-flag {
  outline: none !important; /* prevent outline on focus */
}

.form-control:focus,
.select2-selection--single:focus,
.select2-search__field:focus,
.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #0085FF !important;
  box-shadow: none;
}

.select2-placeholder-hidden .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--single:focus .select2-selection__arrow b,
.select2-placeholder-hidden .select2-selection--multiple .select2-selection__arrow b,
.select2-container--default.select2-container--focus .select2-selection--multiple .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple:focus .select2-selection__arrow b {
  border-color: #0085FF transparent transparent transparent;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #0085FF transparent;
}

.form-group > .form-control:disabled, 
.form-group > .form-control[readonly],
.select2-container--default.select2-container--disabled .select2-selection--single,
.select2-container--default.select2-container--disabled .select2-selection--single:focus,
.select2-container--default.select2-container--disabled .select2-selection--multiple,
.select2-container--default.select2-container--disabled .select2-selection--multiple:focus {
  border-color: grey !important;
  background-color: #f2f2f2 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
::placeholder {
  color: #162350;
  opacity: 0.4;
}

.form-group > .form-control:disabled ~ label,
.form-group > .form-control[readonly] ~ label {
  color: grey;
  background-color: #fff;
  height: 20px;
}


.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  margin: 1px;
}

input[type="checkbox"] {
  height: 16px;
  width: 16px;
  -webkit-appearance: none;   
  border: 1px solid #0085FF;
  border-radius: 4px;
  cursor: pointer;  
  vertical-align: text-top;
  background-color: white;
}

input[type="checkbox"]:disabled {
  border: 1px solid grey;
  background-color: #F1F1F1;
  cursor: default;
}

.form-check-input:disabled~.form-check-label, .form-check-input[disabled]~.form-check-label {
  cursor: default !important;
}

.form-check-input[type=checkbox]~.form-check-label {
  cursor: pointer;
}

.form-check-input:checked[type=checkbox],
input[type="checkbox"]:checked {
  background: transparent linear-gradient(130deg, #0085FF 0%, #00AEEF 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 6px #0085FF2B;
  border: 0px solid transparent;
}

.form-check-input:checked[type=checkbox]::after,
input[type=checkbox]:checked:after {
  font-family: 'Material Icons';
  font-size: 14px;
  content: "\e876";
  color: white;
  position: relative;
  top: -2px;
  left: 1px;
}
.img-btn {
  top: 228px;
  left: 1527px;
  height: 35px;
  color: #0085FF;
  border: 1px solid #0085FF;
  border-radius: 5px;
  opacity: 1;
}

.file-view{
  background-color: #F1F1F1;
  border: 1px dashed #D3D3D3;
  border-radius: 4px;
  opacity: 1;
  padding: 16px;
  margin-top: 25px !important;
}

.plus-view {
  border: solid 1px #162350;
  border-radius: 4px;
  padding: 12px 15px 12px 15px;
}

.user-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 3em; 
}

.user-modal-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 3em; 
  width: 500px;
}

.details-name {
  color: #0085FF;
  opacity: 1;
}

/** Device Page **/
.collepse-row-view {
  padding: 10px;
  font-size: 13px;
}

.collepse-row {
  margin-top: 20px;
  background-color: #FBF9FB;
  padding: 20px;
}

.bridge-view {
  padding: 15px 10px 15px 10px;
  border: none;
  border-radius: 50%;
  background-color: #F4F4F4;
}

.gateway-active {
  height: 11px;
  width: 11px;
  background-color: #00D168;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-75%, 30%, 0);
  margin-top: 35px;
  margin-left: -3px;  
}

.gateway-inactive {
  height: 11px;
  width: 11px;
  background-color: #D10000;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-75%, 30%, 0);
  margin-top: 35px;
  margin-left: -3px;  
}

.sensor-active {
  height: 11px;
  width: 11px;
  background-color: #00D168;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-75%, 30%, 0);
  margin-top: 28px;
  margin-left: 0px; 
}

.sensor-inactive {
  height: 11px;
  width: 11px;
  background-color: #D10000;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-75%, 30%, 0);
  margin-top: 28px;
  margin-left: 0px; 
}


/** Setting Page **/

/* Primary No Outline Black */

.btn-no-outline-setting-grey,
.btn-no-outline-setting-grey:focus {    
  border-radius: 0px !important;
  color: grey;
  background-color: transparent;
  border-bottom: 1px solid #cfcfcf;
}
.btn-no-outline-setting-grey h4 {
  font-size: 14px;
}
.btn-no-outline-setting-grey:hover {
  border-radius: 0px !important;
  color: #323A45;
  background-color: transparent;
  border-bottom: 2px solid #323A45;
}

.btn-no-outline-setting-grey:not(:disabled):not(.disabled):active,
.btn-no-outline-setting-grey:not(:disabled):not(.disabled).active {
  border-radius: 0px !important;
  color: #323A45; 
  background-color: transparent;
  border-bottom: 2px solid#323A45;
}

.btn-no-outline-setting-active {
  border-radius: 0px !important;
  color: #0085ff;
  background-color: transparent;
  border-bottom: 2px solid #0085ff;
}

.change-password-heading {
  margin-top: 15px; 
  margin-bottom: 0px; 
  padding-bottom: 0px;
  padding-top: 15px;
}

.change-password-body {
  padding: 10px 15px 15px 15px; 
  margin: 10px 15px 15px 15px;
}

.change-password-text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #0085FF;
  opacity: 1;
}

.change-password-btn {
  background: #0085FF;
  border-radius: 50px;
  opacity: 1;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
  border: none;
}

.change-password-cancel-btn {
  border: 1px solid #0085FF;
  background-color: transparent;
  border-radius: 50px;
  opacity: 1;
  width: 100%;
  padding: 10px 20px;
}

.btn-input-group {
  margin: 0;
  border: 1px solid #ced4da;
}
.country-code-select {
  padding-top: 24px;
  padding-bottom: 22px;
}
/* Primary No Outline */
.btn-primary.btn-no-outline-setting,
.btn-primary.btn-no-outline-setting:focus {
  color: #323A45;
  border-color: #cfcfcf;
  background-color: transparent;
}

.btn-primary.btn-no-outline-setting:hover {
  color: white;
  border-color: #cfcfcf;
  background-color: #323A45;
}

.setting-general-card-view {
  padding: 20px;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 12px 24px #ECEEF5;
}
.setting-general-card-view h2 {
  font-size: 22px;
}
.setting-general-card-view h4 {
  font-size: 18px;
}
.card-wrapper{
  padding: 30px;
  border: 1px solid #e4e4e4 !important;
  border-radius: 10px !important
}

.container {
  position: relative;
  width: 50%;
}

.setting-profile-image {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: fill;
  border: 3px solid #0085FF;
  background-color: #0085FF;
  opacity: 1;
}

.system-configuration {
  padding: 10px;
  background: #FBF9FB 0% 0% no-repeat padding-box;
  border: 1px solid #e4e4e4;
  opacity: 1;
}

.system-configuration-selected {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  border: none;
  padding: 10px;
  background-color: #0085ff
}

.system-configuration-selected:hover {
  color: #fff !important;
}

.user-role {
  padding: 10px;
  background: #FBF9FB 0% 0% no-repeat padding-box;
  border: 1px solid #e4e4e4;
  opacity: 1;
}

.user-role-selected {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  border: none;
  padding: 10px;
  background-color: #0085ff
}

.user-role-selected:hover {
  color: #fff !important;
}

.user-role-card-view {
  background-color: #FFFFFF;
  box-shadow: 0px 12px 24px #ECEEF5;
  border: 1px solid #A6A2A2;
  border: none;
  border-radius: 6px;
  padding: 15px;
  opacity: 1;
}

@-webkit-keyframes btn-spinner {
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes btn-spinner {
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}

.btn-spinner {
    display: inline-block;
    margin-left: 10px;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: .15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: btn-spinner .75s linear infinite;
    animation: btn-spinner .75s linear infinite;
}

.alert-modal {
  position: absolute;
  top: calc(100vh - 60px - 100px);
  left: 50%;
  transform: translateX(-50%) !important;
  margin: 0 auto;
  border-radius: 8px;
  padding: 10px 20px;
  z-index: 99999;
  align-items: center;
}

#successAlertModal {
  background-color: green;
  color: white;
}

#errorAlertModal {
  background-color: red;
  color: white;
}

#infoAlertModal {
  background-color: #007bff;
  color: white;
}

.show-loader {
  background: url('/img/loader_1.gif') 50% 50% no-repeat;
}

/** Temperature collapse view**/
.margin-space {
  margin-right: 30px;
}

.row-spacing {
  padding-bottom: 30px;
}

.float-left {
  float: left !important;
  margin-left: 20px;
}

.float-right {
  float: right !important;
  margin-right: 20px;
}

.ul-pd-left{
  padding-left: 0px;
  margin-bottom: 0px;
  padding: 3px;
}

/* Country select customsiation */
.iti--separate-dial-code .iti__selected-flag {
  background-color: white !important;
}

.iti {
  display: -webkit-box !important;
}

.select-drop {
  display: none !important;
}

/* Material icons */
.material-icons {
  font-size: 16px !important;
  line-height: 0 !important;
  vertical-align: middle !important;
  position: relative;
  top: -1px !important;
}

.mi-sm {
  font-size: 18px !important;
}

.mi-md {
  font-size: 20px !important;
}

.mi-lg {
  font-size: 24px !important;
}

.mi-xl {
  font-size: 32px !important;
}

.dropbtn {
  background-color: #ffffff;
  color: #17244F;
  font-size: 12px;
  border: none;
}

.tempdropdown {
  position: relative;
  display: inline-block;
}

.tempdropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 90px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.tempdropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.tempdropdown-content a:hover {background-color: #ddd;}

.tempdropdown:hover .tempdropdown-content {display: block;}

.tempdropdown:hover .dropbtn {background-color: #ffffff;}

.chips {
  margin: 5px;
  padding: 5px 25px;
  font-size: 14px;
  border-radius: 25px;
  background-color: #f1f1f1;
  cursor: pointer;
}
.loginusername {
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}
.page-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.tableContainer {
  /* display: block; */
  width: 100%;
  background-color: #fff;
}
.border-top {
  border-top: 1px solid #ddd
}
.pad-tb-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.temperatureContainer {
  padding: 2px;
  text-align: center;
  font-weight: 600;
  /* border-radius: 10px; */
  color: #858585;
}
.temperatureNAContainer {
  padding: 2px;
  text-align: center;
  color: #858585;
  font-weight: 600
}
.select2-container--default .select2-selection--single {
  font-size: 14px;
}
.tableNew {
  width: 100%;
  margin-bottom: 0
}
.tableNew tr td {
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  padding: 10px 0;
}
.tableNew tr td h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0
}
.count-view {
  background-color: #E6F3FF;
  border-radius: 6px;
  padding: 4px 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #606365
}
.equipmentData {
  color: #585757;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600
}
.lastUpdatedat {
  color: #AAAAAA;
  padding-left: 25px;
  font-size: 13px;
  font-weight: 400;
}
.btn-secondary {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
}
#location_detailsView ul {
  padding-left: 0
}
#location_detailsView h5 {
  font-size: 15px;
}
.pl-0 {
  padding-left: 0 !important
}
#location_device h3 {
  font-size: 15px;
  margin-bottom: 0px;
  margin-top: 15px;
}
#user_detailsView h5 {
  font-size: 15px
}
.user-events-collapse ul li {
  padding: 5px 0px;
  border-bottom: 1px solid #ddd !important;
  font-size: 14px;
  font-weight: 500;
}
.removedBusinessCardD {
  position: absolute;
  top: -22px;
  right: -20px;
  background: #e9e5e5;
  border-radius: 50px;
  padding: 10px;
  font-size: 14px !important;
  color: red;
}
.modalcloseBtn {
  position: absolute;
  background-color: #e0e0e0;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  right: 10px;
  padding: 0;
  top: 8px;
}
.form-check.form-check-inline {
  font-size: 13px;
}
#systemConfigurationInputs h6 {
  font-size: 14px;
  margin-bottom: 0
}
.filter-card-new {
  padding-bottom: 10px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 6px;
  border: 1px solid #d5d5d5;
  margin-left: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px; 
}
.alert-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-Timecard {
  background-color: #fff;
}
#temperatureReportTable .table-ul, #alarmReportTableLoading .table-ul {
  padding: 0;
}
#alarmReportTableLoading .table-ul li {
  border-bottom: solid 1px lightgrey;
}
#temperatureReportTable .row-view {
  padding: 0;
}
#temperatureReportTable .row-view h5 {
  background-color: #F3FAFF;
  color: #0071BC;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  margin-bottom: 0;
}
#incidentReportLoading h6 {
  color: #0071BC;
}
#dashboardCard .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 0;
}
#dashboardCard .select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}
#dashboardCard .dashboard-equipment-temp .select2-container .select2-search--inline .select2-search__field {
  margin-top: 7px !important;
}
.subTitle {
  color: #585757;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px !important;
}
.chartLabel {
  width: 40px;
  color: #FFFFFF;
  height: 40px;
  line-height: 40px;
}
.chartLabel.green {
  background-color: #F37B64;
}
.chartLabel.red {
  background-color: #41CB80;
}
.chartLabelText {
  font-size: 14px;
  font-weight: 600;
  color: #585757;
  cursor: pointer;
}
.chartLabelText a {
  color: #0071BC;
  font-weight: 500;
  font-size: 13px;
}
.mt-pull-40 {
  margin-top: -40px;
}
.customLabel h5 {
  font-size: 14px;
  margin-bottom: 5px;
}
.customLabel .select2-container--default .select2-selection--single {
  padding: 8px 12px 5px 10px;
}
.customLabel .form-group {
  padding: 0 0 15px 0;
}
.modal-header-name-text {
  font-weight: 600;
}
.view-details-temperature-card-timestamp {
  color: #AAAAAA;
  font-size: 13px;
  font-weight: 400;
}
.view-details-temperature-text {
  font-size: 14px;
  color: #606365;
  font-weight: 700;
}
.fileContent {
    background: #ddd;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    margin-top: 5px;
}
.incident-table-ul .incidentli {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.incidentContainer {
  border: 1px solid #ddd;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
}
.incidentli h6 {
  color: #0071BC;
  font-size: 15px;
  font-weight: 600;
}
.modal-md-incident h4, #editIncidentForm h6 {
  color: #0071BC;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.deviceAlarmStatus {
  padding: 1px 8px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  background-color: #EFEFEF;
  color: #585757;
  display: inline-block;
}
.deviceAlarmStatus.true {
  color: #D50000;
}
.incidentli .checkbox-p {
  margin-top: 35px;
}
.incidentli .custombtndropdown {
  margin: 0;
  padding: 5px 15px;
  color: #333;
  box-shadow: none;
  border: 1px solid #ddd;
  font-size: 13px;
  font-weight: 500;
  min-width: 140px;
  text-align: left;
  position: relative;
}
.incidentli .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 14px;
}
.incidentli .custombtndropdown .incident-user-image {
  max-width: 20px;
  background-color: #ddd;
  border-radius: 50%;
  margin-right: 7px;
}
.incidentli .dropdown-menu {
  padding: 0;
}
.incidentli .dropdown-menu .incident-user-image{
  max-width: 20px;
  background-color: #ddd;
  border-radius: 50%;
  margin-right: 7px;
}
.incidentli .dropdown-menu .dropdown-item {
  padding: 8px 15px;
  border-bottom: 1px solid #ddd;
}
#incident_detailsView .incident-user-image {
  max-width: 20px;
  background-color: #ddd;
  border-radius: 50%;
  margin-right: 7px;
}
.settingsCardContainer {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
}
.setting-card-ul {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.settingsCardContainer .details-text {
  color: #585757;
  font-weight: 600;
}
.btn-no-outline-profile-active h5 {
  color: #0071BC;
}
.btn-no-outline-profile-active {
  border-left: 2px solid #0071BC;
}
.profile-edit-header-text {
  text-align: left;
  font-size: 20px;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  padding: 2px 10px 0px 30px;
}

.profile-edit-image {
  top: 264px;
  left: 719px;
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
  border: 2px solid #16235036;
  border-radius: 15px;
  opacity: 1;
}

.profile-edit-img-dropdown {
  position: relative;
  display: inline-block;
}

.profile-edit-img-content {
  display: none;
  padding: 20px;
  position: absolute;
  top: 80%;
  margin-left: 60%;
  min-width: 120px;
  min-height: 70px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 10px;
  color: #17244F;
  z-index: 2079;
  font-size: normal normal normal 21px/29px Montserrat !important;
  opacity: 1;
}

.profile-edit-img-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  color: #17244F !important;
  font-size: normal normal normal 21px/29px Montserrat !important;
  opacity: 1;
}

.profile-edit-img-content a:hover {
  min-width: 246px;
  min-height: 197px;
  background-color: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 24px #ECEEF5;
  border-radius: 10px;
  color: #17244F !important;
  font-size: normal normal normal 21px/29px Montserrat !important;
  opacity: 1;
}

.profile-edit-img-dropdown:hover .profile-edit-img-content {
  display: block;
}

.profile-edit-img-dropdown:hover .profile-dropbtn {
  background-color: #FFFFFF 0% 0% no-repeat padding-box;
}

.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  border-radius: 15px;
}

.content:hover .content-overlay{
  opacity: 1;
}

.container .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content-details {
  font-size: 14px !important;
  position: absolute;
  text-align: center;
  top: 50% !important;
  width: 200px;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  opacity: 1;
}

.content-details h3{
  color: #fff;
  font-weight: 500;
  font-size: 16px !important;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-title {
  text-align: center;
  font-size: normal normal normal 16px/22px Montserrat !important;
  letter-spacing: 0px;
  color: #FFFFFF !important;
  text-transform: uppercase;
  opacity: 1;
}

.content-details p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-bottom{
  top: 200px;
}



.operating-hours-container {
  max-width: 400px;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.days-selector {
  display: flex;
  gap:10px;
  /* justify-content: space-between; */
  margin-bottom: 20px;
}

.time-selection {
  display: flex;
  /* justify-content: space-between; */
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

.time-from, .time-to {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.input-group {
  display: flex;
  gap: 5px;
}

input[type="time"] {
  width: 86px;
  padding: 5px;
  font-weight: bold;
}

#from-am-pm, #to-am-pm {
  font-weight: bold; /* Makes the AM/PM text bold */
  padding: 5px;
  font-size: 16px;
  /* border: 1px solid #000000; */
}

select {
  padding: 5px;
  font-size: 16px;
  /* border: 1px solid #000000; */
}

input:disabled, select:disabled {
  background-color: #f0f0f0; /* Light grey background */
  color: #888888; /* Darker grey text */
  border: 1px solid #ccc; /* Grey border */
  cursor: not-allowed; /* Show not-allowed cursor */
}

.range-slider {
  position: relative;
  width: 300px;
}


/* body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
  color: #333;
}

/* Container for the entire section 
.fs-16.mb-3.mt-3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  text-align: left;
} */

/* Days Selector */
.days-selector {
  display: flex;
  justify-content: left;
  gap: 12px;
  margin-bottom: 20px;
}

.day-btn, .shift-days-btn, .shift-repeat-days-btn {
  width: 55px;
  height: 55px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background-color: #fff;
  color: #4a5568;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shift-repeat-days-btn {
  width: 30px;
  height: 30px;
}

.day-btn:hover, .shift-days-btn:hover, .shift-repeat-days-btn:hover {
  background-color: #edf2f7;
  border-color: #cbd5e0;
}

.day-btn.active, .shift-days-btn.active, .shift-repeat-days-btn.active {
  background-color: #3182ce;
  color: #fff;
  border-color: #3182ce;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Time Selection */
.time-selection {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.time-from,
.time-to {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.time-from label,
.time-to label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 8px;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="time"] {
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  width: 120px;
  transition: border-color 0.3s ease;
}

input[type="time"]:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

select {
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

select:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

/* Time Slider */
/* .time-slider {
  margin: 20px auto;
  max-width: 600px;
  background: #e2e8f0;
  height: 8px;
  border-radius: 4px;
  position: relative;
}

.time-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  background: #3182ce;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  top: -6px;
  transition: background 0.3s ease;
}

.time-slider .ui-slider-handle:hover {
  background: #2b6cb0;
}

.time-slider .ui-slider-range {
  background: #3182ce;
  height: 8px;
  border-radius: 4px;
}

/* Time Labels 
.time-labels {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 10px auto;
  font-size: 0.75rem;
  color: #718096;
}

.time-labels span {
  flex: 1;
  text-align: center;
}

/* Responsive Design 
@media (max-width: 600px) {
  .days-selector {
    gap: 6px;
  }

  .day-btn {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }

  .time-selection {
    flex-direction: column;
    align-items: center;
  }

  input[type="time"] {
    width: 100px;
  }

  .time-labels {
    font-size: 0.7rem;
  }
} */

/* .time-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #0085FF;
  outline: none;
  position: absolute;
}

.time-slider:nth-of-type(2) {
  z-index: 1; 
} */

/* .time-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #66A7D4;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.time-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #66A7D4;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
} */

/* .range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
} */


/* Style for the custom slider */
.time-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 24px; /* Custom thumb size */
  height: 24px;
  cursor: default;
  border-radius: 50%; /* Circular shape */
  background-color: #0085FF !important; /* Color of the thumb */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: none;
  display: flex;
  transform: translateY(-50%);
  line-height: 1.2;
  top: 50%;
  justify-content: center;
  align-items: center;
  color: #0085FF;
  font-size: 8px;
}

/* First handle (for 'from') */
/* .time-slider .ui-slider-handle:nth-child(2)::before {
  content: "From";
  color: white;
  font-size: 8px;
} */

/* Second handle (for 'to') */
/* .time-slider .ui-slider-handle:nth-child(3)::before {
  content: "To";
  color: white;
  font-size: 8px;
} */

.time-slider .ui-slider-handle:hover {
  background-color: #0085FF !important; /* Keep the background consistent on hover */
}

/* Styling the range background (between the thumbs) */
/* #time-slider .ui-slider-range {
  background-color: #66A7D4;
} */


.time-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  /* width: 340px; */
}

.time-labels span {
  font-size: 12px;
  color: #666;
}

.weekdayDropdown {
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 6px;
  height: 32px !important;  
  border: 1px solid #D3D3D3;
  text-align: center;
}

.publishTimeIntervalDropdown {
  padding: 2px 12px;
  font-size: 14px;
  border-radius: 6px;
  height: 32px !important;  
  border: 1px solid #030303;
  text-align: center;
}

/* sasasasasas */

/* .temperature-container {
  width: 100%;
  max-width: 600px;
}

.slider-container {
  position: relative;
  height: 40px;
  width: 100%;
  margin-top: 20px;
} */

.temperature-slider {
  position: relative;
  height: 12px;
  background-color: #f0f0f0;
  border-radius: 4px;
  width: 100%;
}

.temperature-slider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  /* height: 4px; */
  background-color: #f0f0f0;
  transform: translateY(-50%);
  z-index: 1;
}

/* Circles placed at specific points */
/* .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #6DA4F8;
  z-index: 1;
} */

/* .handle {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background-color: #007bff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3; */
/* } */

#slider-range-max .ui-slider-handle, #slider-range-min .ui-slider-handle {

position: absolute;
top: 50%;
width: 24px;
height: 24px;
background-color: #007bff;
border-radius: 50%;
transform: translate(-50%, -50%);
cursor: pointer;
z-index: 3;
}


/* Margin between sliders */
.mt-3 {
  margin-top: 20px;
}

.operating-time-main-div {
  display:flex;
  flex-direction: row;
  gap: 40px;
}

.operating-time-div {
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.min-temperature,.max-temperature {
  color: #716868 ; 
  font-weight: bold;
}

.input-style-box {
  display: flex; 
  align-items: center; 
  gap: 8px;
}

#minTemperature, #maxTemperature {
  width: 80px; 
  height: 40px; 
  text-align: center; 
  font-weight: bold; 
  font-size: 16px;
  border-radius: 4px;
}


/* raw data slide switch */
.toggle-container {
  position: relative;
  width:60px; 
  height: 30px;
  display: inline-block;
}

.toggle-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-container .raw-data-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc; /* Off state background */
  border-radius: 10px;
  transition: background-color .4s;
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  user-select: none;
}

/*text style inside the slider */
.toggle-container {
  position: relative;
  width: 60px;  
  height: 34px; 
  display: inline-block;
  vertical-align: middle;
}

.toggle-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-container .raw-data-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc; /* Off state background */
  border-radius: 17px;
  transition: background-color .4s;
  line-height: 34px;
  font-size: 9px;  
  font-weight: 500;
  color: #ffffff;
  user-select: none;
}

.toggle-container .raw-data-slider:before {
  /* content: "Raw Data"; */
  content: "";

  display: inline-block;
  width: 100%;
  text-align: right;
  padding-right: 8px; 
}

/* On state*/
.toggle-container input:checked + .raw-data-slider:before {
  text-align: left;
  padding-left: 8px; 
}

/* The handle/circle */
.toggle-container .raw-data-slider:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  left: 4px; 
  top: 4px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform .4s;
}

/* On state */
.toggle-container input:checked + .raw-data-slider {
  background-color: #007bff;
}

.toggle-container input:checked + .raw-data-slider:after {
  transform: translateX(25px); 
}

.raw-timestamp {
  color: grey; 
  font-size: 12px; 
}

.raw-temperature {
  color: #111728; 
  font-weight: bold;
  font-size: 14px; 
}


/* new */
.temp-am-row-view {
  background-color: #FFFCE5;
}

.temp-pm-row-view {
  background-color: #F5F5F5;
}
.time-slot {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  font-size: 13px;
}
.time-slot-values, .time-slot-values-1 {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  font-size: 13px;
}
.time-slot-values-raw {
  border: 1px solid #ddd;
  font-size: 13px;
  padding: 10px 0px;
}
.date-header {
  background-color: #F7F7F7;
  color: #777A7B;
  font-size: 14px;
  padding: 10px;
}
.report-row-view {
    font-size: 13px;
  margin: 0px !important;
}
.time-slot-values * {
  padding: 5px 5px;
}

#reportTemperatureFltrCard {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
 }


.filter-card-new > div {
  flex: none;
}

/* Assigning widths in percentage */
.date-picker {
  width: 12%;
}

.temp-report-dropdown, .schedule-dropdown {
  width: 15%;
}

.toggle {
  width: 15%;
  text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;

}

.filter-button {
  width: 10%;
}

.add-data-container {
  text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
} .add-data-container-1   {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.add-data-container {
  width: 10%;
} .add-data-container-1 {
  width: 15%;
}
.report-text{
  font-size: 14px;
}
.report-equipment-name {
  color: #252525;
  font-weight: 600;
  font-size: 14px;
}
.report-operating-temp {
  color: #707070;
  font-weight: 400;
  font-size: 13px;
}
.report-location-name {
  color: #000000;
  font-weight: 500;
  font-size: 13px;
}
.report-temp-date {
  color: #707070;
  font-weight: 500;
  font-size: 13px;
}

.child-tab {
  flex: 1;
  padding: 10px 20px; 
  background: transparent;
  border: 1px solid #d5d5d5;
  outline: none;
  cursor: pointer;
  margin:0;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-right: none;
  color: #777A7B;
  /* color: #333; */
}

.child-tab.active {
  background: white;
  color: #007bff;
  font-weight: bold;
  /* border: none; */
  border-bottom: 2px solid white;
}
.child-tab:last-child {
  border-right: 1px solid #d5d5d5; /* Keep right border on the last button */
}
.row.g-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}


.dashboard-card-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


#temperatureChart,
canvas[id^="productivityChart"] {
  height: 200px !important;
}

.taskType {
  margin-bottom: 3px;
  font-weight: bold;
}
.shift-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.users-arrow-icon {
position: static !important;
  float: none !important;
}

@keyframes pulse-blue {
  from { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
  to { box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
}

.status-completed {
  color: green;
}
.status-ongoing {
  color: #007bff; /* Blue */
  animation: pulse-blue 1.5s infinite alternate;
}
.status-on-break {
  color: #007bff; /* Blue, no glow */
}
.status-resumed-work {
  color: #007bff; /* Blue */
  animation: pulse-blue 1.5s infinite alternate;
}
.status-missed {
  color: red;
}
.status-upcoming {
  color: grey;
}
.status-late {
  color: red;
  font-size: 12px;
  font-weight: normal;
} 

/* Shift schedule Css */

.filter-card-schedule {
  padding-bottom: 5px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 6px;
  border: 1px solid #d5d5d5;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px; 
  margin-top: 20px;
  margin-bottom: 20px;
}

.stepper {
  display: flex;
  gap: 2rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #6c757d; /* default gray */
}

.step-item .step-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #e9ecef;
  color: #495057;
  font-size: 14px;
  font-weight: bold;
}

.step-item.active .step-icon {
  background: #0d6efd; /* Bootstrap primary */
  color: #fff;
}

.step-item.completed .step-icon {
  background: #e9ecef;
  color: #28a745; /* green check */
  font-size: 18px;
}

.step-item.active  {
  color: #0d6efd;
}

.step-item.completed  {
  color: #28a745;
}

.location-card {
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  transition: 0.2s ease-in-out;
}

.location-card:hover {
  border-color: #007bff;
}

.location-card.selected {
  border: 2px solid #007bff;
  background: #eef6ff;
}
.location-heading {
  font-size: 14px;
}
.location-sub-heading {
  font-size: 13px;
}
.location-card.selected .location-heading {
  font-size: 14px;
  color: #0085FF;
}
.location-card.selected .location-sub-heading {
  font-size: 13px;
  color: #0085FF;
}
.location-scroll {
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
}
input.form-control.input-date,
input.form-control.hasDatepicker {
  height: 38px;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
}

input.form-control.input-date {
  padding-right: 2rem;
}
.user-list-container {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
.text-success {
  font-size: 13px;
}
.assigned-user-list-container {
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}
.custom-height {
  height: 90vh;
}
.custom-height .modal-content {
  height: 100%;
}
table.custom-no-horizontal td,
table.custom-no-horizontal th {
  border: none;
  /* border-bottom: 0.5px solid #cfcfcf; */
}

table.custom-no-horizontal {
  border-collapse: collapse;
}
.micro-location-row {
  background-color: #F5F5F5;
  /* border-bottom: 0.5px solid #e0e0e0; */
  /* align-items: center; */
}
.micro-location-header {
  border: none;
}

.micro-location-list {
  list-style: none;
}

.micro-location-item {
  background-color: #F5F5F5;
  border-bottom: 0.5px solid #e0e0e0;
  padding: 6px 6px;
}

.table-scroll.customScrollSchedule {
  position: relative; /* Defines the sticky context */
  max-height: 55vh; /* Adjust based on your layout */
  overflow-y: auto; /* Enables vertical scrolling */
}

.shiftPreviewScroll {
  max-height: 68vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.shift-schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.shift-schedule-header,
.shift-schedule-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 6px 8px;
}
.shift-schedule-header {
  font-weight: bold;
}
.shift-schedule-row {
  background-color: #f5f5f5;
}
.col-user {
  flex: 1 1 30%;
  font-size: 14px;
}
.col-microloc {
  flex: 1 1 35%;
  font-size: 14px;
}
.col-task {
  flex: 1 1 35%;
  font-size: 14px;
}
.toggle-filter-schedule {
  width: 15%;
}
.tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 0 2px;
  background-color: #f9f9f9;
  color: #888;
  transition: all 0.2s ease-in-out;
}

.tab-item.active {
  background-color: #007bff;
  color: #fff;
}

.tab-item:hover:not(.active) {
  background-color: #eaeaea;
}
.tab-item .material-icons {
  color: #0085FF;
  transition: color 0.2s;
}

.tab-item.active .material-icons {
  color: #fff;
}
.col-shift {
  flex: 1 1 20%;
  font-size: 14px;
}
.col-location {
  flex: 1 1 30%;
  font-size: 14px;
}
.col-micro {
  flex: 1 1 35%;
  font-size: 14px;
}
.col-status {
  flex: 1 1 15%;
  font-size: 14px;
}

.shift-view {
  background-color: #fff;
  border:1px solid #169AF3;
  margin:0px;
}
ul.shift-view li:not(:last-child) {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
ul.shift-view li {
  padding: 5px 0
}
ul.shift-view li .checkbox {
  margin-right: 10px;
}
.without_ampm::-webkit-datetime-edit-ampm-field {
  display: none;
}
input[type=time]::-webkit-clear-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance:none;
  appearance: none;
  margin: -10px; 
}

/* CSS Variables for Maintainability */
     :root {
      --sidebar-width: 260px;
      --sidebar-collapsed-width: 64px;
      --primary-color: #0052cc;
      --text-color: #172b4d;
      --text-muted: #5e6c84;
      --bg-color: #f4f5f7;
      --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease-in-out;
      --border-radius: 6px;
      --toggle-size: 28px;
      --toggle-offset: 14px;
    }

    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
      overflow-x: hidden;
    } 

    /* Sidebar */
    .navbar-static-side {
      position: fixed;
      top: 70px;
      left: 0;
      width: var(--sidebar-width);
      height: 100vh;
      background: var(--bg-color);
      box-shadow: var(--shadow);
      transition: width var(--transition);
      overflow-y: auto;
      z-index: 1000;
    }

    .navbar-static-side.collapsed {
      width: var(--sidebar-collapsed-width);
    }

    .navbar-static-side.collapsed .nav-label,
    .navbar-static-side.collapsed .sidebar-footer p,
    .navbar-static-side.collapsed .sidebar-logo {
      display: none;
    }

    .navbar-static-side.collapsed .menu-icon {
      transform: scale(1.1);
      margin: 0 auto;
    }

    /* Sidebar Header */
    .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      position: sticky;
      top: 0;
      background: var(--bg-color);
      border-bottom: 1px solid #dfe1e6;
      z-index: 10;
    }


    /* Toggle Button */
    .btn-toggle {
      position: absolute;
      top: 10px;
      right: calc(-0.5 * var(--toggle-size) / 2);
      width: var(--toggle-size);
      height: var(--toggle-size);
      background: #ffffff;
      border: 1px solid #dfe1e6;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      transition: background-color 0.2s ease, transform 0.2s ease;
      z-index: 20;
    }

    .btn-toggle:hover {
      background-color: var(--primary-color);
      transform: scale(1.08);
    }

    .btn-toggle:hover .material-icons {
      color: #ffffff;
    }

    .navbar-static-side.collapsed .btn-toggle .material-icons {
      transform: rotate(180deg);
    }

    .btn-toggle .material-icons {
      font-size: 16px;
      color: var(--text-color);
      transition: var(--transition);
    }

    /* Menu Items */
    #side-menu {
      padding: 12px;
      padding-top: 36px;           
      list-style: none;
    }

    #side-menu > li {
      margin-bottom: 4px;
      padding: 6px 0;
    }

    #side-menu > li > a {
      display: flex;
      align-items: center;
      color: var(--text-color);
      height: 44px;
      padding: 0 12px;
      /* border-radius: var(--border-radius); */
      text-decoration: none;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    #side-menu > li > a:hover {
      background-color: #ebecf0;
      color: var(--primary-color);
    }

    #side-menu > li > a.active {
      background-color: #deebff;
      color: var(--primary-color);
      font-weight: 500;
    }

    .nav-label {
      font-size: 16px;
      font-weight: 500;      
      padding: 25px;
      color: inherit;
      white-space: nowrap;
    }

    #side-menu img.menu-icon {
      height: 25px;      
      width: 25px;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(20%) sepia(30%) saturate(600%) hue-rotate(200deg);
      transition: var(--transition);
    }

    #side-menu > li > a:hover img,
    #side-menu > li > a.active img {
      filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(2000%) hue-rotate(200deg);
    }

    /* Footer */
    .sidebar-footer > p {
      padding: 16px;
      text-align: center;
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* Main Content Wrapper */
    #body-wrapper {
      margin-left: var(--sidebar-width);
      width: calc(100vw - var(--sidebar-width));
      transition: margin-left var(--transition), width var(--transition);
    }

    .navbar-static-side.collapsed ~ #body-wrapper {
      margin-left: var(--sidebar-collapsed-width);
      width: calc(100vw - var(--sidebar-collapsed-width));
    }

    /* Footer */
    .footer {
      width: calc(100vw - var(--sidebar-width) - 120px);
      transition: width var(--transition);
    }

    .navbar-static-side.collapsed ~ .footer {
      width: calc(100vw - var(--sidebar-collapsed-width) - 120px);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .navbar-static-side {
        width: var(--sidebar-width);
        transform: translateX(-100%);
      }
      .navbar-static-side.open {
        transform: translateX(0);
      }
      .navbar-static-side.collapsed {
        transform: translateX(-100%);
      }
      .btn-toggle {
        right: calc(-1 * var(--toggle-size) / 2);
      }
      #body-wrapper {
        margin-left: 0;
        width: 100vw;
      }
      .footer {
        width: calc(100vw - 120px);
      }
    }

    /* Display nav-label on hover when sidebar is collapsed */
.navbar-static-side.collapsed #side-menu > li {
  position: relative;
  
}

.navbar-static-side.collapsed #side-menu > li > a:hover .nav-label {
  display: block;
  position: absolute;  
  right:auto; 
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: var(--text-color);
  padding: 6px 6px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  white-space: nowrap;
  z-index: 1001;
}

.disabled-slider {
  pointer-events: none; 
}

/* --- API Service Page Styles --- */
#apiServicePage {
  height: 100vh;
  overflow-y: auto;
}

#clientDatePickers {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.smaller-font {
  font-size: 0.85rem;
}

/* Client Info Table Specific */
#clientInfoTable ul {
  padding-left: 0;
  margin-left: 0; 
}
#clientInfoTable ul li {
  padding-left: 0;  
}
#clientInfoTable .table-ul .row-view {
  display: flex;
  align-items: center;
}
#clientInfoTable .table-ul .col-4 {
  flex: 0 0 33.3333%;
}
#clientInfoTable .table-ul .col-8 {
  flex: 0 0 66.6666%;
}

/* Table Row and Feature Display */
.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.feature-key-column {
  width: 40%;
  font-weight: bold;
  text-align: left;
}
.feature-value-column {
  width: 60%;
  text-align: left;
}

/* Modal base styling */
.delete-modal-body {
  padding-top: 5px;
}

.delete-card {
  background: #f8f9fa;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 10px 12px;
  transition: 0.2s;
}

.delete-card:hover {
  background: #f1f1f1;
}

.delete-card-inner {
  display: flex;
  align-items: center;
}

.delete-card-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.delete-card-text {
  display: flex;
  flex-direction: column;
}

.delete-card-title {
  font-weight: 600;
  color: #222;
  font-size: 15px;
}

.delete-card-subtitle {
  font-size: 13px;
  color: #6c757d;
}

/* Checkbox + label */
#permanentlyLabelText {
  font-size: 14px;
  color: #6c757d;
}
/* Business Card Style */
.business-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.business-card:hover {
    background-color: #f9fafb;
}

.left-content {
    display: flex;
    align-items: center;
}

.business-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
}

.business-info p {
    margin: 0;
    line-height: 1.4;
}

.business-Name {
    font-weight: 600;
    color: #2b2b2b;
}

.business-Address {
    font-size: 13px;
    color: #707070;
}

.arrow svg {
    width: 18px;
    height: 18px;
    color: #555;
}
/* marker reports */
.reports-card-modern {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reports-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.icon-wrapper {
  background: #f0f6ff;
  border-radius: 12px;
  padding: 14px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-title {
  font-weight: 600;
  font-size: 18px;
  color: #1e2a4a;
  margin-bottom: 6px;
}

.report-desc {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
/* Optional cleanup for perfect alignment */
.card {
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.equipment-card-content img {
  object-fit: cover;
}
.card * {
  white-space: normal !important; 
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}
.five-col {
  flex: 0 0 20%;    /* exactly 20% width */
  max-width: 20%;
}
/* Buttons */
#microLocationDeleteBtn:disabled {
  opacity: 0.6;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;  /* moves buttons to right */
  gap: 8px;                   /* small space between Cancel & Delete */
}

.image-placeholder {
  width: 96px;
  height: 96px;
  background: #f3f4f6;
  border-radius: 8px;
  border: 1px solid #e6e9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image-placeholder img { width: 64%; height: 64%; object-fit: contain; display:block; }

/* Stronger, full-opacity bordered Choose Image button */
.choose-btn {
  background: #fff;
  color: #0d6efd;               /* primary blue text */
  border: 2px solid #0d6efd;    /* visible blue border */
  padding: 8px 14px;
  border-radius: 6px;
  opacity: 1;                   /* ensure full opacity */
  box-shadow: 0 3px 8px rgba(13,110,253,0.08);
}
.choose-btn:hover {
  background: #e9f3ff;
  text-decoration: none;
}

/* API Service Specific Table Styles - Only for API Service Page */
#apiServicePage #temperatureReportTable .table-ul, 
#apiServicePage #alarmReportTableLoading .table-ul {
  padding: 0;
}
#apiServicePage #alarmReportTableLoading .table-ul li {
  border-bottom: solid 1px lightgrey;
}
#apiServicePage #temperatureReportTable .row-view {
  padding: 0;
}
#apiServicePage #temperatureReportTable .row-view h5 {
  background-color: #F3FAFF;
  color: #0071BC;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  margin-bottom: 0;
}

.chat-bubble {
    background: #f1f3f4;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ai-response {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.ai-loading {
    background-color: #fffde7;
    border-left: 4px solid #ffeb3b;
}

/* Typing dots animation */
.typing-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 16px;
    gap: 3px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: #888;
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% { opacity: 0.2; }
    40% { opacity: 1; }
}
