.PopularProducts_Box {
    display: block;
    width: 100%;
    min-height: 100px;
    z-index: 10000;
    color: #ffffff;
    height: fit-content;
}

.PopularProducts_Loading {
    width: 100%;
    float: left;
    text-align: center;
}

.Show {
    display: block;
}

.Hide {
    display: none;
}

.product-item-row {
    cursor: pointer;
    padding: 20px 15px;
    margin: 15px;
    text-align: -webkit-center;
    /** box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px; **/
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    border-radius: 20px;
}

    .product-item-row:focus {
        outline: -webkit-focus-ring-color auto 0px;
        outline-color: -webkit-focus-ring-color;
        outline-style: auto;
        outline-width: 0px;
    }

.loader {
    margin: 20px auto;
    height: 28px;
    width: 28px;
    animation: rotate 0.8s infinite linear;
    border: 3px solid #1f597c;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ProductImage {
    margin-bottom: 15px;
    object-fit: contain;
    padding: 10px;
}

    .ProductImage img {
        width: 100%;
    }

.ProductDetails {
    height: 100%;
    vertical-align: bottom;
}

.ProductName,
.ProductDescription,
.ProductPrice {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #17191d;
    height: 40px;
    line-height: 20px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.ProductDescription {
    font-weight: normal;
}

.arrow {
    border: solid #4d4d4d;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 8px;
    line-height: 0;
    position: absolute;
    cursor: pointer;
}

.right {
    top: 50%;
    right: -20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    top: 50%;
    left: -20px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    top: -10px;
    right: -20px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    bottom: -10px;
    right: -20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
/* Slick Dots */

.slick-vert.slick-dots {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    text-align: center;
    margin: 0px 3px;
    padding: 11% 1% 11% 0.001%;
    /* border-left: 1px solid lightgrey; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
}

    .slick-vert.slick-dots li:nth-child(1) {
        display: block;
    }

    .slick-vert.slick-dots li:nth-child(2) {
        display: none;
    }

    .slick-vert.slick-dots li.slick-active:nth-child(1) {
        display: none;
    }

    .slick-vert.slick-dots li.slick-active:nth-child(2) {
        display: block;
    }

/*Popular Products Add to Cart Button */

.AddToCartButton {
    background-color: #1d428a;
    width: 80%;
    border-radius: 68px;
    padding: 3px;
}

.lblAddToCart {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.slick-slide {
    height: auto;
}

.AddToCartButton {
    background-color: #1d428a;
    width: 80%;
    border-radius: 68px;
    padding: 3px;
}

.lblAddToCart {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.ProductDisplayGridSlider {
    margin-right: 8px;
    padding: 12px;
    margin-bottom: 8px;
    position: relative;
}

.FilListGridSlider {
    border: 1px solid #e7e7e7;
}

.BrandInfo {
    font-size: 15px;
    color: #454142;
}

.lbl_PartNo {
    font-size: 13px;
    color: #454142;
}

.lnk_PartNo {
    font-size: 13px;
    color: #fe5000;
}

.FilListGridSlider.ProductDisplayGridSlider {
    cursor: pointer;
    z-index: 999999;
}

.lblAddToCart a:hover,
.lblAddToCart a:active,
.lblAddToCart a:visited {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.ProductDisplayGridLinkAddButtons {
    width: 33% !important;
    border-radius: 6px !important;
    height: 34px !important;
    color: #ffffff !important;
    line-height: 34px !important;
}

.ProductDisplayGridSlider:hover {
    border: 1px solid #f99e1b;
    -webkit-box-shadow: 0px 0px 23px 0px rgb(150 150 150);
    -moz-box-shadow: 0px 0px 23px 0px rgba(150,150,150,1);
    box-shadow: 0px 0px 23px 0px rgb(150 150 150);
    cursor: pointer;
}

.popular-products-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

    .popular-products-wrapper .ProductDisplayGridStockLeft {
        width: 100%;
    }

        .popular-products-wrapper .ProductDisplayGridStockLeft.FilListGridStockLeft {
            margin-top: 0;
            width: 100%;
            color: #454142;
        }

    .popular-products-wrapper.slick-initialized {
        visibility: visible;
        opacity: 1;
        margin-top: -100px;
    }

    .popular-products-wrapper .slick-track {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .popular-products-wrapper .ProductDisplayGridShortDesc {
        margin-bottom: 5px;
        height: 2.5em;
    }

    .popular-products-wrapper .slick-list {
        padding-top: 30px;
    }
