#forgotpassbox2, #amazonpay_fetch_auto, #googlepay_fetch_auto, #tataneu_fetch_auto{
    display: none;
}

 #loading_ajax {
    display: block;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
  }

  .dot-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 8px;
  }

  .dot-loader span {
    width: 12px;
    height: 12px;
    background-color: #17afe2;
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out;
  }

  .dot-loader span:nth-child(1) {
    animation-delay: 0s;
    background-color: #12a3d4;
  }
  .dot-loader span:nth-child(2) {
    animation-delay: 0.1s;
    background-color: #0c8ab4;
  }
  .dot-loader span:nth-child(3) {
    animation-delay: 0.2s;
    background-color: #035c8a;
  }
  .dot-loader span:nth-child(4) {
    animation-delay: 0.3s;
    background-color: #030f8f;
  }
  .dot-loader span:nth-child(5) {
    animation-delay: 0.4s;
    background-color: #010a69;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-10px) scale(1.3);
    }
  }
  
 button.buttons-html5, button.buttons-print {
    background-color: #0282ad;
    border: none;
    margin: 0 10px;
    border-radius: 5px !important;
}

.copylinkbtn{
    cursor: pointer;
}

.slider-container {
    position: relative;
  }

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin: 0 5px 10px 5px;
    color: #74788d;
    font-size: 14px;
    user-select: none;
  }

input[type="range"] {
    position: relative;
  }


  .tooltip {
    position: absolute;
    top: -30px;
    left: 0;
    transform: translateX(0);
    background-color: #0282ad;
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 15px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.2s;
    user-select: none;
  }
  .tooltip.visible {
    opacity: 1;
    transform: translateY(0);
  }

 
  .tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #0282ad transparent transparent transparent;
  }

 .progress-container {
      width: 100%;
      background-color: #eee;
      border-radius: 20px;
      overflow: hidden;
      margin-top: 20px;
    }

    .progress-bar {
      width: 0%;
      height: 20px;
      background-color: #28a745;
      text-align: center;
      line-height: 20px;
      color: white;
      font-size: 12px;
    }
    
    .json-box{
    background:#0f172a;
    color:#e5e7eb;
    padding:15px;
    border-radius:8px;
    max-height:300px;
    overflow:auto;
    font-size:13px;
}

/* Table Overlay Loader */
.table-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.table-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #556ee6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Search Button Loading */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}


@media(max-width:995px){
    .logo-lg img{
        width: 16em !important;
    }
}





  