.cart-update-container{
  margin-top: 2em;
}

.loader {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: block;
    margin: 75px auto;
    position: relative;
    background: currentColor;
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 0.3s 0.3s linear infinite alternate;
  }
  
  .loader::after, .loader::before {
    content: '';
    width: 8px;
    height: 40px;
    border-radius: 4px;
    background: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    box-sizing: border-box;
    animation: animloader 0.3s  0.45s  linear infinite alternate;
  }
  .loader::before {
    left: -20px;
    animation-delay: 0s;
  }
  
  @keyframes animloader {
    0%   { height: 48px} 
    100% { height: 4px}
  }
  
  /* fix sidebar width in mobile */
  @media (max-width: 767px) {
    .header-cart-container{
      width: 100%;
      right: -100%;
    }
  }
  .shop-products-col{
    width: 100%;
  }
  .no-products {
    text-align: center;
    padding: 40px 0;
    font-size: 1.2rem;
    color: #666;
    width: 100%;
}

h1, h2, h3, h4, h5, h6{
  margin: 0.5em 0;
}

table, th, td{
  border: 2px solid;
  border-collapse: collapse;
  padding: 10px;
  text-align: center;
  border-color: #B5B3B3;
}

.btn-stock{
  left: 80px;
}
.stock-table{
  width: 100%;
  font-size: 1.3em;
}
.bg-success{
  background-color: #198754;
  color: #fff;
}
.bg-danger{
  background-color: #dc3545;
  color: #fff;
}
.bg-primary{
  background-color: #0d6efd;
  color: #fff;
}