 

  
.bz-notifications {
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 10000000;
    color: #fff;
  }
  .bz-notifications :where(.notifications-toast, .column) {
    display: flex;
    align-items: center;
  }
  .bz-notifications .notifications-toast {
    width: 400px;
    position: relative;
    overflow: hidden;
    list-style: none;
    border-radius: 4px;
    padding: 16px 17px;
    margin-bottom: 10px;
    justify-content: space-between;
    animation: show_notifications-toast 0.3s ease forwards;
  }
  @keyframes show_notifications-toast {
    0% {
      transform: translateX(100%);
    }
    40% {
      transform: translateX(-5%);
    }
    80% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-10px);
    }
  }
  .bz-notifications .notifications-toast.hide {
    animation: hide_notifications-toast 0.3s ease forwards;
    -webkit-animation: hide_notifications-toast 0.3s ease forwards;
  }
  @keyframes hide_notifications-toast {
    0% {
      transform: translateX(-10px);
    }
    40% {
      transform: translateX(0%);
    }
    80% {
      transform: translateX(-5%);
    }
    100% {
      transform: translateX(calc(100% + 20px));
    }
  }
  .bz-notifications .notifications-toast::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    animation: progress 10s linear forwards;
    -webkit-animation: progress 10s linear forwards;
  }
  @keyframes progress {
    100% {
      width: 0%;
    }
  }
  .bz-notifications .notifications-toast.success::before, .btn#success {
    background: var(--success);
  }
  .bz-notifications .notifications-toast.error::before, .btn#error {
  background: var(--error);
  }
  .bz-notifications .notifications-toast.warning::before, .btn#warning {
    background: var(--warning);
  }
  .bz-notifications .notifications-toast.info::before, .btn#info {
    background: var(--info);
  }
  .bz-notifications .notifications-toast .column i {
    font-size: 1.75rem;
  }
  .bz-notifications .notifications-toast.success .column i {
    color: var(--success);
  }
  .bz-notifications .notifications-toast.error .column i {
    color: var(--error);
  }
  .bz-notifications .notifications-toast.warning .column i {
    color: var(--warning);
  }
  .bz-notifications .notifications-toast.info .column i {
    color: var(--info);
  }
  .bz-notifications .notifications-toast .column span {
    font-size: 1.07rem;
    margin-left: 12px;
  }
  .bz-notifications .notifications-toast i:last-child {
    color: #aeb0d7;
    cursor: pointer;
  }
  .bz-notifications .notifications-toast i:last-child:hover {
    color: var(--dark);
  }
  
  
  @media screen and (max-width: 530px) {
    .bz-notifications {
      width: 95%;
    }
    .bz-notifications .notifications-toast {
      width: 100%;
      font-size: 1rem;
      margin-left: 20px;
    }
  }
  
  .bz-notifications .notifications-toast{
    background: var(--dark);
  }

  .center.loading-indicator{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: fixed;
    z-index: 900000;
    top: 0;
    left: 0;
    background: #fff;
  }
  .bg-white{
    background-color: #fdfdfd;
  }

  .w-100{
    width: 100%;
  }

  .loading-indicator #loading-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 500px; */
    width: 300px;
    /* border-radius: 50%; */
    /* box-shadow: inset -10px -10px 15px rgba(255, 255, 255, 1),
      inset 10px 10px 10px rgba(0, 0, 0, 0.1); */
  }
  .loading-indicator #loading-container::before {
    content: "";
    position: absolute;
    height: 200px;
    width: 200px;
    
  }


  .supplier-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    max-width: 150px; /* Adjust the max-width based on your design */
    box-sizing: border-box;
}

.supplier-row-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Adjust spacing as needed */
    gap: 15px; /* Adjust the gap between containers */
}

.supplier-logo-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.supplier-logo-container .spinner-border {
    margin-top: 10px;
    width: 30px; /* Adjust spinner size */
    height: 30px;
}


.supplier-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    max-width: 150px; /* Adjust the max-width based on your design */
    box-sizing: border-box;
}

.supplier-row-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Adjust spacing as needed */
    gap: 15px; /* Adjust the gap between containers */
}

.supplier-logo-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.supplier-logo-container .spinner-border {
    margin-top: 10px;
    width: 30px; /* Adjust spinner size */
    height: 30px;
    display: inline-block;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border-top-color: #4965ae;
    animation: spin 1s linear infinite;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}