/** Shopify CDN: Minification failed

Line 554:2 Unexpected "}"

**/
/* Hide the section on larger screens */
.mobile-only {
    display: none;
  }
  
  
  /* Show the section only on mobile devices */
  @media screen and (max-width: 768px) {
    .mobile-only {
      display: block;
    }
  }
  
  /* Loading overlay styles */
  .loading-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  /* Loading spinner styles */
  .loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Spinner animation */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  #quick-order{
      margin:auto;
      max-width: 1200px;
      padding: 20px;
      background-color: #f9f9f9;
      font-family:Source Sans Pro, sans-serif;
    }
    #checkout{
      max-width: 200px;
      width:100%;
      padding: 10px;
      background-color: #650502;
      display: block;
      color:white;
      text-align: center;
      text-transform: uppercase;
    }
    /* General styles for the search bar */
    #search-bar {
      margin-bottom: 15px;
      display: flex;
      width: 100%;
      position: relative;
    }
    
    #search-input {
      width: 100%;
      padding: 8px;
      font-size: 14px;
      border: 1px solid #ddd;
      border-radius: 4px;
    }
    
  
    #product-selection,
    #basket {
      width: 100%;
    }
  /* Basket styles */
  #basket {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
  }
  
  #basket-items {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .basket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .basket-item img {
    max-width: 50px;
    height: auto;
    margin-right: 10px;
  }
  
  .basket-item-title {
    flex: 1;
    margin-right: 10px;
  }
  
  .basket-item-size,
  .basket-item-price,
  .basket-item-quantity {
    margin-right: 10px;
    font-size: 14px;
    color: #555;
  }
  
  .remove-from-basket {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .remove-from-basket:hover {
    background-color: #cc0000;
  }
    
    #product-list-container.loading {
      opacity: 0.5;
      pointer-events: none;
      position: relative;
    }
    
    #product-list-container.loading::after {
      content: 'Loading...';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 14px;
      color: #333;
    }
    
    /* Product table styles */
    #product-list table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 15px;
    }
    
    #product-list th,
    #product-list td {
      border: 1px solid #ddd;
      padding: 6px;
      text-align: left;
    }
    
    #product-list th {
      background-color: #f4f4f4;
      font-size: 12px;
    }
    
    .product-price {
      font-weight: bold;
      color: #333;
      font-size: 14px;
    }
    
    .quantity-input {
      width: 50px;
      padding: 4px;
      text-align: center;
      margin-right: 5px;
    }
    
    .product-quantity {
      font-weight: bold;
      color: #555;
      font-size: 14px;
    }
    
    #basket-items {
      list-style-type: none;
      padding: 0;
    }
    
    #basket-items li {
      margin: 5px 0;
      font-size: 14px;
    }
    
    /* Pagination styles */
    .pagination {
      text-align: center;
      margin-top: 10px;
    }
    
    .pagination a {
      margin: 0 5px;
      text-decoration: none;
      color: #007bff;
      font-size: 14px;
    }
    
    .pagination span {
      margin: 0 5px;
      font-size: 14px;
    }
    
  /* General styles for the table */
  #product-list table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
  }
  
  #product-list th,
  #product-list td {
    border: 1px solid #ddd;
    padding: 6px;
    text-align: left;
  }
  
  #product-list th {
    background-color: #f4f4f4;
    font-size: 14px;
  }
  
  .add-to-basket {
      background-color: #007bff;
      color: #fff;
      border: none;
      padding: 8px 12px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    
    .add-to-basket:hover {
      background-color: #0056b3;
    }
    
    .add-to-basket:disabled {
      background-color: #6c757d;
      cursor: not-allowed;
    }
    
    .add-to-basket.added-to-basket {
      background-color: #28a745;
      color: #fff;
    }
    .remove-from-basket {
      background-color: #dc3545;
      color: #fff;
      border: none;
      padding: 5px 10px;
      margin-left: 10px;
      cursor: pointer;
      border-radius: 4px;
      font-size: 12px;
    }
    
    .remove-from-basket:hover {
      background-color: #c82333;
    }
    #product-list table {
      border-collapse: collapse;
      width: 100%;
    }
    
    #product-list th, #product-list td {
      border: 1px solid #ddd;
      padding: 8px;
    }
    
    #product-list th {
      background-color: #f4f4f4;
      text-align: left;
    }
    
    #product-list img {
      max-width:90px; /* Adjusted size for mobile */
      height: auto;
    }
    
    .size-dropdown {
      width: 100%;
      padding: 5px;
    }
    
    .quantity-input {
      width: 60px;
      padding: 5px;
    }
    
    .add-to-basket {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 5px 10px;
      cursor: pointer;
    }
    
    .add-to-basket:hover {
      background-color: #0056b3;
    }
  
      /* Lightbox overlay styles */
      .lightbox-overlay {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
        z-index: 1000;
        justify-content: center;
        align-items: center;
      }
  
      /* Lightbox image styles */
      .lightbox-overlay img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 8px;
      }
  
  
    /* Responsive styles for tablets (768px to 1024px) */
    @media (min-width: 769px) and (max-width: 1024px) {
      #quick-order {
        flex-direction: column;
        padding: 15px;
      }
    
      #product-selection,
      #basket {
        width: 100%;
        margin-bottom: 15px;
      }
    
      #search-bar {
        margin-bottom: 10px;
      }
    
      #search-input {
        font-size: 14px;
        padding: 8px;
      }
    
      #product-list table {
        font-size: 14px;
      }
    
      #product-list th,
      #product-list td {
        padding: 6px;
        font-size: 14px;
      }
    
      .quantity-input {
        width: 45px;
        padding: 4px;
      }
    
      #basket-items li {
        font-size: 14px;
      }
    
      .pagination {
        font-size: 14px;
      }
    
      .pagination a {
        padding: 5px;
      }
    
    
      /* Reduce image size for tablets */
      #product-list img {
        max-width: 70px; /* Medium size for tablets */
        height: auto;
      }
    }
  
  /* Responsive styles for mobile devices */
  @media (max-width: 768px) {
    .basket-item-title{
      line-height: normal;
    }
  
    .basket-item img {
      max-width: 35px;
      height: auto;
      margin-right: 10px;
  }
    #checkout{
      max-width: 200px;
      text-align: center;
      width:100%;
      padding: 10px;
      display: block;
      color:white;
      text-align: center;
      text-transform: uppercase;
      border-radius: 15px;
    }
    /* Hide the SKU column */
    #product-list th:nth-child(3), /* Hide the SKU header */
    #product-list td:nth-child(3) { /* Hide the SKU data cells */
      display: none;
    }
    /* Target specific columns by their index */
    #product-list th:nth-child(1), #product-list td:nth-child(1) {
      width: 20%; /* Product column */
    }
  
    #product-list th:nth-child(2), #product-list td:nth-child(2) {
      width: 9%; /* Image column */
    }
  
    #product-list th:nth-child(3), #product-list td:nth-child(3) {
      width: 15%; /* SKU column */
    }
  
    #product-list th:nth-child(4), #product-list td:nth-child(4) {
      width: 11%; /* Price column */
    }
  
    #product-list th:nth-child(5), #product-list td:nth-child(5) {
      width: 15%; /* Size column */
    }
  
    #product-list th:nth-child(6), #product-list td:nth-child(6) {
      width: 8%; /* Qty column */
    }
  
    #product-list th:nth-child(7), #product-list td:nth-child(7) {
      width: 12%; /* Add column */
    }

    .bbasket-item-size {
        width: 15%; /* Size column */
    }
    }
    .product-title {
      font-size: 12px;
      line-height: normal
    }
    #product-list img {
      max-width: 25px; /* Adjusted size for mobile */
      height: auto;
    }
    .size-dropdown {
      width: 100%;
      padding: 5px;
      font-size: 12px;
    }
    .quantity-input {
      width: 40px;
      padding: 3px;
      font-size: 12px;
    }
    .add-to-basket {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 5px 5px;
      cursor: pointer;
      font-size: 12px;
    }
     #product-list > table > thead > tr > th:nth-child(1){
      padding-right:2px;
     }
  
      #quick-order {
        flex-direction: column;
        padding: 5px;
      }
    
      #product-selection,
      #basket {
        width: 100%;
        margin-bottom: 15px;
      }
    
      #search-bar {
        margin-bottom: 10px;
      }
    
      #search-input {
        font-size: 12px;
        padding: 6px;
      }
    
      #product-list table {
        font-size: 12px;
      }
    
      #product-list th,
      #product-list td {
        padding: 4px;
        font-size: 12px;
      }
    
      .quantity-input {
        width: 40px;
        padding: 3px;
      }
    
      #basket-items li {
        font-size: 12px;
      }
    
      .pagination {
        font-size: 12px;
      }
    
      .pagination a {
        padding: 4px;
      }
    
      .qty_box{
        width:49px
      }
      
      .add-to-basket {
        background-color: #650502;
        color: white;
        border: none;
        padding: 5px 5px;
        cursor: pointer;
        width: 40px;
        margin-top: 2px;;
      }
  
  }
    