<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Container */
.list-container {
    display: flex;
    margin: 0 auto;
    max-width: 1300px;
}

.header-heading {
	margin: 0 auto;
    max-width: 1300px;
    text-align: center;
}


/* Blue Menu (Left Side) */
.blue-menu, .blue-menu-mobile {
    background-color: #1768AC;
    width: 276px;
    padding: 20px;
    color: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  	height: 475px;
}

.blue-menu-mobile {
  display: none;
  }

.blue-menu h2, .blue-menu-mobile h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600;
}

.menu-separator {
    border: none;
    border-top: 1px solid #ffffff;
    margin-bottom: 15px;
}

.blue-menu ul, .blue-menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue-menu ul li {
    margin-bottom: 27px;
}

.blue-menu ul li a, .blue-menu-mobile ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding-right: 20px;
}

.blue-menu ul li a::after, .blue-menu-mobile ul li a::after {
    content: '&gt;';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
}

/* Main Content (Right Side) */
.main-content {
    flex-grow: 1;
    padding: 60px;
    background-image: url('/wp-content/uploads/2024/08/1000_F_612526335_zvHHPeCKcqBSG2owHNhNuYkc2PTmuUqB-1.png');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex; /* Add this */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.auction-banner h3 {
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 400;
  	
}

.auction-banner h1 {
    font-size: 55px;
    margin: 10px 0 20px 0;
    line-height: 1.2;
    max-width: 500px;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600;
}

.auction-banner p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.5;
}

.main-content h1,
.main-content h3,
.main-content p {
    color: white; /* Ensure the text color is white */
}

/* Header for Search Bar and Sort Button */
.header-content {
    display: flex;
    align-items: center;
    margin-top: 20px; /* Aligns with sidebar */
  	margin-right: 55px; /*Aligns with product grid */
    justify-content: center; /* Aligns items left and right */
}

.search form {
	display: inline;
    width: 75%
}

.search {
  	flex: 2;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
  	max-width: 1300px;
    margin: 10px auto;
}

.search-bar {
    width: 100%;
    max-width: 600px;
    padding: 10px 20px !important;
   	border: 1px solid #D9D9D9 !important;
    border-radius: 25px !important;
    outline: none;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle drop shadow */
}

.search-button {
    background-color: #000;
    color: #fff;
    padding: 10px !important;
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
  	width: 140px;
    text-align: center; /* Align text inside the button to the left */
  	margin-left: 10px;
}

/* Sort and Filter Buttons */
.sort-button,
.filter-button {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    padding-left: 20px; /* Add padding to the left to create space for the text */
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align the content to the left */
    font-weight: bold;
    width: 100px; /* Width to accommodate text and icon */
    text-align: left; /* Align text inside the button to the left */
}

/* Icon inside the button */
.sort-button::after,
.filter-button::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 15px; /* Position the icon on the right side */
}

/* Specific icons */
.sort-button::after {
    background-image: url('/wp-content/uploads/2024/08/SortAscending.svg');
}

.filter-button::after {
    background-image: url('/wp-content/uploads/2024/08/filter.svg');
}


/* Show the filter button only on devices narrower than 772px */
@media (max-width: 771px) {
    .filter-button {
        display: block;
        margin-bottom: 7px;
    }
}

/* Hide the filter button on devices 773px and wider */
@media (min-width: 772px) {
    .filter-button {
        display: none;
    }
}


/* Auction Cards Section */
.auction-cards-section {
    max-width: 1300px;
    margin: 20px auto;
    padding: 0;
}

/* Outer container to house sidebar and grid */
.auction-content-wrapper {
    display: flex;
    justify-content: space-between;
  	margin: 0 auto;
  	max-width: 1300px;
}


/* Auction Card */
.auction-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: calc(33% - 20px);
    max-width: 325px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.auction-card.live {
    width: calc(25% - 20px);
    max-width: 325px;
}

.lot-number-bar {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative; /* Add this for absolute positioning of the icon */
}

.lot-number-bar .combined-group-id {
    position: absolute;
    left: 10px;
    //top: 50%;
    //transform: translateY(-50%);
    //width: 30px;
    height: 30px;
    cursor: pointer;
}

.lot-number-bar .watchlist-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* Auction Subtitle */
.auction-subtitle {
    font-size: 16px;
    color: #555;
    padding: 5px;
    text-align: center;
    height: 51px;
    overflow: hidden;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 185px; /* Set the fixed height for the image */
    background: #fafafa;
    overflow: hidden;
}

.auction-image {
    width: auto;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without stretching */
    display: block;
    margin: 0 auto;
}

/* Auction Status Overlay */
.auction-status {
    position: absolute;
    bottom: 0; /* Align to the bottom of the image */
    left: 0;
    width: 100%; /* Make it full width */
    color: #fff;
    padding: 5px 10px;
    font-size: 1em;
    font-weight: bold;
    text-align: center; /* Center the text */
    box-sizing: border-box;
}

.auction-status.status-losing {
    background-color: #FF4136;
}

.auction-status.status-winning {
    background-color: #2E6F40;
}


/* Auction Timer */
.auction-timer {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.time-unit {
    text-align: center;
    flex: 1;
}

.time-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.time-label {
    font-size: 12px;
    color: #777;
}

/* Auction Buttons */
.auction-buttons {
    display: flex;
    justify-content: space-around;
    padding: 15px;
}

.auction-card.live .auction-buttons {
    padding: 10px;
}

.bid-now,
.view-details,
.bid-closed {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
    transition: background-color 0.2s;
}

.bid-now {
    background-color: #050040;
    color: #fff;
}

.bid-closed {
    background: #c73235;
    color: #fff;
}

.view-details {
    background-color: #fff;
    color: #050040;
    border: 1px solid #050040;
}

/* Current Bid */
.auction-bid {
    padding: 10px 15px;
    text-align: center;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.current-bid-label {
    margin-right: 5px;
    color: #555;
    font-weight: normal;
}

/* Auction Info Section for Bottom Grid */
.auction-info {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}

.info-item {
    width: 50%; /* Each item takes up 50% of the width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0; /* Add padding to the top and bottom */
}

/* Specific alignment for Total Bid and QTY */
.info-item:nth-child(1) .info-label,
.info-item:nth-child(1) .info-value,
.info-item:nth-child(3) .info-label,
.info-item:nth-child(3) .info-value {
    text-align: right;
    padding-right: 10px; /* Add padding to the right side */
}

.info-item .info-label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.info-item .info-value {
    color: #333;
    font-size: 16px;
    margin-top: 2px;
}

.info-icon {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

/* Adjustments for Borders */
.info-item:nth-child(1),
.info-item:nth-child(2) {
    border-bottom: 1px solid #ddd;
}

.info-item:nth-child(2),
.info-item:nth-child(4) {
    border-left: 1px solid #ddd;
    padding-left: 10px;
}

/* Modal Styles */
/* General styles for modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    overflow-y: auto; /* Ensure the modal itself can scroll if needed */
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    margin: 180px auto 20px auto; /* Add 80px top margin for mobile devices */
    overflow-y: auto; /* Allow scrolling inside the modal */
    max-height: calc(100% - 200px); /* Limit modal height for scrolling */
    box-sizing: border-box;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1768AC;
    color: white;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: -20px -20px 0 -20px; /* Remove white space */
    border-bottom: none;
}


.modal-header h3 {
    margin: 5px;
    color: white; /* Ensure the text color is white */
}

.close-modal {
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.modal-body {
    margin-top: 20px;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Terms Modal Accordion */
.accordion-button {
    background: none;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
    text-align: left;
}

.chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #1768AC;
    border-bottom: 2px solid #1768AC;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion-button.active .chevron {
    transform: rotate(-135deg);
}

/* Modal Header for Removal Times */
#removal-times-modal .modal-header h3 {
    margin: 0;
    color: white; /* Make header text white */
    background-color: #1768AC; /* Blue background for the header */
    padding: 10px 15px; /* Padding inside the header */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Specific Text Styles for Removal Times */
#removal-times-modal .modal-body h4 {
    font-size: 18px;
    margin-top: 20px;
    color: #333;
    font-weight: bold;
}

#removal-times-modal .modal-body p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/* Accordion Button */
#removal-times-modal .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-align: left;
}

#removal-times-modal .accordion-button .chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #1768AC;
    border-bottom: 2px solid #1768AC;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

#removal-times-modal .accordion-button.active .chevron {
    transform: rotate(180deg);
}


/* Sidebar Container */
.filter-sidebar {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Sidebar Header */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h3 {
    font-size: 20px;
    font-weight: bold;
}

.filter-icon img {
    width: 20px;
    height: 20px;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 20px;
}

/* Accordion Button */
.accordion-button {
    background: none;
    border: none;
    padding: 0;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion-button.active .chevron {
    transform: rotate(-135deg);
}

/* SIDEBAR CSS Starts Here */
/* Accordion Content */
.accordion-content {
    padding-top: 10px;
}

.separator {
    border: none;
    border-top: 1px solid #D9D9D9;
    margin: 10px 0;
}

/* Filters Styling */
.status-filters, .condition-filters, .bid-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.status-pill, .condition-pill, .bid-pill {
    padding: 8px 12px;
    background-color: #F3F3F3;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.status-pill.active, .condition-pill.active, .bid-pill.active {
    background-color: #1768AC; /* Blue */
    color: #FFFFFF;
}

.apply-filter {
    width: 100%;
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

/* Category Active*/
.accordion-content ul li.active {
    background-color: #ddd; /* Highlight the active item */
    font-weight: bold; /* Make the text bold */
    padding: 5px;
    cursor: pointer;
}


@media (min-width: 769px) and (max-width: 1024px) {
    .list-container {
        max-width: 98%;
        margin: 0 auto; /* Center the container horizontally */
    }
}
/* Responsive Design */
@media (max-width: 992px) {
    .auction-card {
        width: calc(48% - 20px);
    }
    
    .auction-status {
    	font-size: 0.85em;
    }
}

@media (max-width: 768px) {
    /* Hide Sidebar */
    .blue-menu, .filter-sidebar, .filter-sidebar, .product-filters { 
        display: none; 
    }
    
    /* Full-Width Container */
    .list-container {
        width: 98%;
        display: block;
        margin: 0 auto;
    }

    /* Auction Grid Container */
    .auction-grid {
        width: 97% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px !important; /* 5px gap between items */
        margin: 0 auto !important; /* Center the grid on the screen */
    }

    /* Auction Card */
    .auction-card {
        flex: 1 1 calc(50% - 5px); /* Two cards per row */
        background-color: #ffffff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;
    }

    /* Stack Buttons Vertically and Center */
    .auction-buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center buttons horizontally */
        gap: 10px; /* Space between buttons */
        padding: 5px;
    }
    
.auction-cards-section {
  margin-top: 5px;
}
    .auction-buttons .bid-now,
    .auction-buttons .view-details, .bid-closed {
        width: 150px; /* Slight padding on sides for better centering */
        max-width: 98%; /* Optional: Limit width for consistency */
      	padding: 7.5px 10px;
    }

    /* Current Bid and Total Bid */
    .auction-bid {
    padding: 5px 15px;
}
		.current-bid-label {
        font-size: 0.875em; /* Equivalent to 14px if base font size is 16px */
    }

.auction-info {
  padding: 0px;
}

    /* Total Bid, MSRP, QTY, and Sold by */
    .info-item .info-label,
    .info-item .info-value {
        font-size: 0.8125em; /* Slightly smaller, around 13px */
    }

    /* Icon (â„¹ï¸) */
    .info-icon {
        font-size: 0.625em; /* Smaller icon size */
    }
  .image-container {
          height: 160px;
      }
  .auction-banner h1 {
      font-size: 2em;
      max-width: 95%;
  }
.main-content {
  padding: 10%;
  border-radius: 10px 10px 0 0;
}
.auction-banner h3 {
    font-size: 1.25em;
}
.auction-banner p {
    font-size: 1.1em;
}
    .header-content {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
        margin-top: 15px;
        margin-right: 0; /* Remove any right margin */
        max-width: 100%; /* Ensure full-width responsiveness */
    }

    .search {
        display: inline; /* Use full width on mobile */
        align-items: baseline; /* Center horizontally */
        justify-content: center; /* Center vertically */
        margin: 10px auto; /* Center in parent container */
        width: 98%; /* Use full width on mobile */
    }

    .search-bar {
        width: 95%; /* Set a percentage width for responsiveness */
        max-width: 430px; /* Optional: Limit the width for consistency */
        margin-bottom: 10px; /* Add spacing between search bar and button */
    }

    .search-button {
		display: none; /* hide search button on mobile */
        width: 98%; /* Match the width of the search bar */
        text-align: center;
    }

/* Accordion for blue-menu-mobile */
.blue-menu-mobile .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    padding: 10px 0;
}

.blue-menu-mobile {
  height: auto;
  width: 100%;
  border-radius: 0px 0px 10px 10px; /* Top-left and top-right are 0px, bottom-left and bottom-right are 10px */
  display: block;
  margin-top: 0;
}

/* Chevron for accordion header */
.blue-menu-mobile .chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate chevron when accordion is active */
.blue-menu-mobile .accordion-header.active .chevron {
    transform: rotate(-135deg);
}

/* Accordion content */
.blue-menu-mobile .accordion-content {
    display: none; /* Default state is closed */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Accordion content active state */
.blue-menu-mobile .accordion-content.active {
    display: block; /* Show content when active */
}

.blue-menu-mobile ul li {
    margin-bottom: 20px;
}
}

/* Pagination Styles */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 5px;
    font-family: Arial, sans-serif;
}

.pagination-button {
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-button:hover {
    background-color: #f0f0f0;
}

.pagination-button.active {
    background-color: #1768AC; /* Dark blue for active page */
    color: #FFFFFF; /* White color for active page text */
    border: 1px solid #1768AC; /* Blue border for active page */
}

.pagination-button.previous,
.pagination-button.next {
    display: flex;
    align-items: center;
    gap: 3px;
}

.pagination-button.previous::before,
.pagination-button.next::after {
    content: ''; /* Circle symbol, you can replace with an icon if needed */
    font-size: 10px;
    color: #1768AC; /* Blue icon */
}

.pagination-dots {
    padding: 5px 10px;
    color: #666;
}

/* Alert Banner Section */
.alert-banner {
    background-color: #ff3930; /* red background */
    border: 1px solid #e0e0e0; /* Border for definition */
    padding: 10px 20px; /* Padding for spacing */
	margin: 10px 1% 10px 1%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: Arial, sans-serif;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    padding: 20px; /* make take up more room to be more eye-catching */
}

.alert-icon {
    font-size: 2em;
    color: #ffcc00; /* Yellow color for alert icon */
}

.alert-text {
    font-size: 16px;
    color: #fff; /* white for text */
}

.alert-text strong {
    font-weight: bold;
    color: #fff; /* white for bold text */
}

.alert-button {
    padding: 5px 15px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.alert-button:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.live-board-header {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 1300px;
    text-align: center;
}

.category-pill {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

.category-pill.active {
    background-color: #0056b3;
    font-weight: bold;
}

.category-pill:hover {
    background-color: #0056b3;
}

.return-catalog {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
    transition: background-color 0.2s;
    background-color: #050040;
    color: #fff;
}

.auction-grid-empty {
	display: none; 
	text-align: center; 
	width: 100%; 
	margin-top: 50px;
	margin-bottom: 50px;
}

.countdown-30 {
	font-size: 100px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	display: none;
}

@media (max-width: 768px) {
	.countdown-30 {
		font-size: 70px;
	}
}

.combined-group-id {
	font-size: 0.8em;
	font-weight: normal !important;
}

.combined-group-highlight-disabled {
	border-color: #c1f0c8;
	border-width: 2px;
}</pre></body></html>