.overlay01 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2001;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .19);
  opacity: 0;
  visibility: hidden;
  transition: .3s linear;
}
.overlay01.is-open {
  opacity: 1;
  visibility: visible;
}

#textOverlay{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.blink_alert {animation: blinker 1s linear infinite;}
.blurry_effect{pointer-events: none;opacity: 0.4;}

.dropdownfixed {
  position: fixed !important;
  z-index: 1050 !important;
}

.steps-progress-bar {
    display: table;
    width: 100%;
    margin: 0;
    padding: 10px 10px 0;
    table-layout: fixed;
    counter-reset: step;
    overflow-x: auto;
    white-space: nowrap;
    position: relative; /* Add this to ensure proper z-index scope */
}
.steps-progress-bar li {
    list-style-type: none;
    display: table-cell;
    font-size: 14px;
    position: relative;
    text-align: center;
    z-index: 2; /* Ensure step icons appear above the lines */
}
.steps-progress-bar li:before {
    width: 50px;
    height: 50px;
    content: counter(step);
    counter-increment: step;
    line-height: 50px;
    font-size: 18px;
    border: 2px solid #ccc;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #fff;
    color: #777;
    z-index: 3; /* Higher than the line */
    position: relative; /* Make z-index apply */
}
.steps-progress-bar li:after {
    width: 100%;
    height: 5px;
    content: '';
    position: absolute;
    background-color: #ccc;
    top: 25px;
    left: -47%;
    z-index: 1; /* Ensure line stays behind */
}
.steps-progress-bar li:first-child:after {
    content: none;
}

.modal .steps-progress-bar {
    z-index: 1050; /* Ensure modal content priority */
}

.steps-progress-bar li.step-done:before {
    content: "\eb7b"; /* check-line */
    font-family: 'remixicon';
    background-color: #00a36c;
    color: #fff;
    border-color: #00a36c;
}
.steps-progress-bar li.step-done + li:after {
    background-color: #00a36c;
}
.steps-progress-bar li.step-active:before {
    content: "\f338"; /* ri-time-line icon */
    font-family: 'remixicon';
    border-color: #00a36c;
    color: #00a36c;
    font-size: 22px;
    line-height: 50px;
}
.steps-progress-bar li.step-cancel:before {
    content: "\eb97"; /* close-line */
    font-family: 'remixicon';
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.steps-progress-bar li.step-icon-hold.step-active:before,
.steps-progress-bar li.step-icon-hold.step-done:before {
    content: "\efd6"; /* pause-circle-line */
    font-family: 'remixicon';
    background-color: orange;
    color: white;
    border-color: orange;
}

.steps-progress-bar li.step-icon-packed.step-active:before,
.steps-progress-bar li.step-icon-packed.step-done:before {
    content: "\f2f5"; /* box-3-line */
    font-family: 'remixicon';
    background-color: #00a36c;
    color: white;
    border-color: #00a36c;
}

.steps-progress-bar li.step-icon-failed.step-active:before,
.steps-progress-bar li.step-icon-failed.step-done:before {
    content: "\eca1"; /* error-warning-line */
    font-family: 'remixicon';
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.steps-progress-bar li.step-icon-complete.step-active:before,
.steps-progress-bar li.step-icon-complete.step-done:before {
    content: "\eb79"; /* check-double-line */
    font-family: 'remixicon';
    background-color: #00a36c;
    color: white;
    border-color: #00a36c;
}



@keyframes blinker {
  50% {
	opacity: 0;
  }
}

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

#search_duplicate_order{
  width: 16px; 
  height: 12px; 
  cursor:pointer;
}
.search_duplicate_order{
    cursor: pointer;
}
