#supertab-undo-side-button {
    padding-bottom: 10px;
}

.loading-bar {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 123, 255, 0) 0%, rgba(255, 255, 255, .54) 50%, rgba(0, 123, 255, 0) 100%);
    background-size: 200% 100%;
    animation: load 2s ease-in-out infinite;
    position: relative;
    top: 22px;
    right: 169px;
}

@keyframes load {
    0%, 100% {
        background-position: 100% 0;
    }
    50% {
    background-position: 0% 0;
    }
}

.st-label {
    position: relative;
    top: 14px;
    right: 79px;
    font-size: 10px;
}

.fade-out {
  opacity: 0; /* Start hidden for JavaScript-driven display */
  display: none;
  transition: opacity 2s linear; /* Adjust time as needed */
}

.visible {
  opacity: 1;
  transition: opacity 2s linear; /* Ensure this matches the time above */
}

.st-lbw {
    position: absolute;
    left: 73px;
    top: 15px;
    background-color: white;
    border-radius: 16px;
    padding: 4px 4px 1px 4px;
    color: #333;
    z-index: 1000;
    cursor: pointer;
    transition: 2s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
}

i.supertab-icon {
    background-image: url('supertablogo.webp');
    background-size: contain;
    display: inline-block;
    width: 21px;
    height: 20px;
    background-position: center;
    color: white;
    margin: 2px !important;
    background-repeat: no-repeat;
}

#st-total {
    position: relative;
    top: -6px;
    padding-right: 4px;
    font-size: 10px;
}

#st-value {
    font-size: 14px;
    padding-right: 4px;
}

.bundle {
    white-space: nowrap;
    padding: 2px 0 5px 0;
    text-align: center;
    overflow: hidden;
}

.bundle-button{
    padding-top: 4px;
    margin-right: 10px;
    margin-left: 10px;
}

.bundle-count{
    font-size: 11px;
    right: 77px;
}

@media (max-width: 800px) {
    .st-lbw {
        left: 57px;
        top: 12px;
    }
}

.st-auto-confirm {
    margin-top: 8px;
    line-height: 24px;
    border-top: 1px dashed #bbbbbb;
    padding-top: 8px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px; /* Width of the switch */
  height: 24px; /* Height of the switch */
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc; /* Off state color */
  transition: .4s;
  border-radius: 34px; /* Rounded borders */
}

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

.slider:before {
  position: absolute;
  content: "";
  height: 16px; /* Height of the circle inside the slider */
  width: 16px; /* Width of the circle inside the slider */
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%; /* Round shape */
}

input:checked + .slider {
  background-color: #000; /* On state color */
}

input:checked + .slider:before {
  transform: translateX(16px); /* Move the circle to the right on toggle */
}
