.p-lab__container :is(h1, h2, h3, h4, h5, h6) {
  text-transform: unset;
}

.p-lab__container {
  min-height: 320px;
}

/* Loading indicator - 3 pulsating dots */
.pl-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.pl-loader__dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pl-loader__dot {
  background-color: #000;
  border-radius: 50%;
  animation: pl-pulse 2s ease-in-out infinite;
}

.pl-loader__dot:nth-child(1) { 
  width: 16px;
  height: 16px;
  animation: pl-pulse-large 2s ease-in-out infinite;
  animation-delay: 0s; 
}
.pl-loader__dot:nth-child(2) { 
  width: 12px;
  height: 12px;
  animation-delay: 0.3s; 
}
.pl-loader__dot:nth-child(3) { 
  width: 8px;
  height: 8px;
  animation-delay: 0.6s; 
}

@keyframes pl-pulse {
  0%, 80%, 100% {
    transform: scale(0.6);
  }
  40% {
    transform: scale(1);
  }
}

@keyframes pl-pulse-large {
  0%, 80%, 100% {
    transform: scale(0.6);
  }
  40% {
    transform: scale(1.3);
  }
}

/* Bootstrap tooltip styling for tracking page */
#parcellab-track-and-trace-ui-wrapper .pl-article-item div.tooltip-inner {
  opacity: 1;
  background-color: #fff !important;
}

/* Custom Stock Message overrides / changes === */
.tipClass {
	margin-left: 1px;
}

.newStockMessage img {
	width: 16px !important;
	height: 16px !important;
}

.pl-tracking.hit-stock-message {
  cursor: pointer;
}