:root {
    --light-text: rgb(168, 168, 168);
    --dark-text: #2b2b2b;
}

.brand-text {
    font-family: 'Mulish', sans-serif;
    font-family: 'Rubik', sans-serif;
    /* font-family: 'Lora', serif; */
    font-weight: 700;
}

.updatePrice {
    /* width: 0; */
    /* height: 0; */
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out;
}

.updatePrice.show {
    width: unset;
    height: unset;
    opacity: 100 !important;
}

.bg-light-2 {
    background-color: rgb(233, 233, 233);
    border-radius: 0.25rem;
}

.product-brand-listing {
    font-size: 1.25rem;
}

.light-text {
    color: var(--light-text);
}

.dark-text {
    color: var(--dark-text);
}

.wheel-size {
    font-size: 0.9rem;
}

.wheel-amt {
    font-size: 0.75rem;
    /* color: rgb(197, 30, 30); */
    color: var(--bs-primary);
}

.product-listing-container {
    padding-bottom: 1rem; 
    border-bottom: 3px solid rgba(190, 190, 190, 0.25);
}

.product-listing-container .star {
    font-size: 0.9rem;
}

.loader-container {
    -webkit-backdrop-filter: brightness(0.5);
    backdrop-filter: brightness(0.5);
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1051;
}

.loader-container.show {
    display: flex;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Filters scroll bar */

.filter-container .accordion-body {
    max-height: 275px;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .filter-container .accordion-body {
        max-height: 175px;
    }
}

@media (max-width: 768px) {
    footer .navbar-brand {
        margin: 0;
    }
}