form div.form-check label.form-check-label:hover {
    text-decoration: underline;
}
.products-page-sublist-item {
    border-left: none;
    border-right: none;
}
#products-page-sublist-dropdown-menu {
    z-index: 100;
    border-radius: 0;
    padding-top: 0!important;
    padding-bottom: 0!important;
}
#products-page-sublist-dropdown-menu {
    max-height: 50vh;
    /* overflow-x: hidden; */
    width: 100%;
}
#products-page-sublist-dropdown-menu::-webkit-scrollbar {
    appearance: none;
    -webkit-appearance: none;
    width: 7px;
}
#products-page-sublist-dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px gba(255, 255, 255r, .5);
    -webkit-box-shadow: 0 0 1px gba(255, 255, 255r, .5);
}
#product-filter-item {
    display: none;
}
#products-grid {
    display: grid;
    gap: 1rem;
}
#products-grid .products-grid-item {
    position: relative;
    text-decoration: none;
    color: black;
}
#products-grid .products-grid-item-product {
    padding-left: 1rem;
    padding-right: 1rem;
}
#products-grid img {
    height: 140px;
    width: 100%;
    object-fit: contain;
}
.products-page-attribute-title {
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0;
}
.product-item-additional-info {
    margin-bottom: .25rem;
}
.product-item-free-shipping {
    position: absolute;
    left: 0;
    background: var(--westech-green);
    margin: 0;
    padding: 0.375rem;
    color: white;
}
.product-item-name {}
.product-item-alt-name {}
.product-item-price {}
.sub-image-wide {
    min-width: 140px;
}
.main-product-img-container {
    justify-content: center;
}
.main-product-img-container span {
    width: 100%;
}

.main-product-img-container span .main-image {
    width: 100%;
}

.zoomImg {
    background-color: white;
}

#products-page-sublist-dropdown-menu.dropdown-menu.show {
    overflow-y: scroll;
    padding: 0.475rem;
}

.product-attribute-dropdown {
    position: relative;
    height: 68px;
}

input:focus, .form-select:focus {
    border-color: var(--westech-green) !important;
    box-shadow: 0 0 0 .25rem rgba(0, 107, 110, .25) !important;
}

.product-attribute-dropdown label {
    position: relative;
    z-index: calc(50 - var(--index));
}

.product-attribute-dropdown .form-select {
    position: absolute;
    z-index: calc(50 - var(--index));
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-attribute-dropdown .form-select:has(:nth-child(11)) {
    -ms-overflow-style: unset;
    scrollbar-width: unset;
}

.form-select option {
    position: relative;
}

.form-select option:hover:not(:disabled), .form-select option:checked {
    background: var(--westech-green);
    color: white;
}

@media only screen and (min-width: 576px) {
    #products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 768px) {
    #products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

}
/* Desktop CSS Changes */
@media only screen and (min-width: 992px) {
    #products-page-sublist-dropdown {
        display: none;
    }
    #products-page-sublist-dropdown-menu {
        max-height: unset;
        position: relative;
    }
    #products-page-sublist-dropdown-menu, #products-page-sublist-dropdown-menu.show {
        display: block;
        height: unset;
        border: none;
        transform: unset!important;
    }
    
    #products-page-sublist-dropdown-menu li:hover, #products-page-sublist-dropdown-menu li:hover a  {
        background-color: var(--westech-green)!important;
        color: white!important;
    }
    #products-page-sublist-dropdown-menu li.product-attribute:hover {
        background-color: unset!important;
        color: black!important;
    }
    #products-grid { 
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 1200px){

}
