:root {
    --primary-color: #FC6823;
    --secondary-color: #FEEFE9;
    --black: #221F1E;
    --white: #FFFFFF;
    --font-family: 'Poppins';
}
#page-content {
    overflow: hidden;
}
.link-std {
    font-family: var(--font-family);
    line-height: 27px;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: underline;
}
.bg-color-red-orange {
    background-color: #FC6823;
}
.bg-color-red-orange-light {
    background-color: #FCF6F3;
}
.bg-color-cream {
    background-color: #FEEFE9;
}
.bg-color-grey-70 {
    background-color: #F7F7F7;
}
.bg-color-grey-50 {
    background-color: #ECECEC;
}
.red-orange {
    color: #FC6823;
}
.flat-orange {
    color: #FFDBCA;
}
.cream {
    color: #FEEFE9;
}
.light-cream {
    color: #FEF8F5;
}
.black-100 {
    color: #221F1E;
}
.black-90 {
    color: #252631;
}
.black-80 {
    color: #555555;
}
.black-70 {
    color: #626262;
}
.grey-100 {
    color: #A3A3A3;
}
.grey-90 {
    color: #BDBDBD;
}
.grey-70 {
    color: #707070;
}
.grey-50 {
    color: #E5E5E5;
}
.grey-10 {
    color: #F2F2F2;
}
.white {
    color: #FFFFFF;
}
.blue {
    color: #1797FE;
}
.green {
    color: #56C030;
}
.h1, .h2, .h3, .h4, .b1, .b2, .b3 {
    font-family: var(--font-family);
    font-style: normal;
}
.h1 {
    font-size: 56px;
}
.h2 {
    font-size: 40px;
    line-height: 48px;
}
.h23 {
    font-size: 32px;
    line-height: 40px;
}
.h3 {
    font-size: 24px;
    line-height: 31.2px;
}
.h4 {
    font-size: 18px;
    line-height: 24px;
}
.b1 {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.5px;
}
.b2 {
    font-size: 15px;
    line-height: 22px;
}
.b3 {
    font-size: 13px;
    line-height: 19.5px;
}
.bold {
    font-weight: 700;
}
.semi-bold {
    font-weight: 600;
}
.medium {
    font-weight: 500
}
.normal {
    font-weight: 400;
}
.underline {
    text-decoration: underline;
}
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
.strikethrough {
    text-decoration: line-through;
}
.align-center {
    margin: auto;
}
.a-btn-sm, .a-btn-md, .a-btn-lg, .a-btn-xl, .a-btn-fat, .a-btn-add-cart {
    font-weight: 700;
    font-style: normal;
    font-family: 'Poppins';
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}
.a-btn-xl {
    height: 40px;
    width: 288px;
    font-size: 13px;
    line-height: 40px;
}
.a-btn-lg {
    height: 40px;
    width: 250px;
    font-size: 13px;
    line-height: 40px;
}
.a-btn-add-cart {
    height: 40px;
    width: 229px;
    font-size: 13px;
    line-height: 40px;
    border: none;
}
.a-btn-md {
    height: 40px;
    width: 205px;
    font-size: 15px;
    line-height: 40px;
}
.a-btn-sm {
    height: 40px;
    width: 107px;
    font-size: 15px;
    line-height: 40px;
}
.a-btn-fat {
    font-family: 'Roboto';
    height: 60px;
    width: 190px;
    font-size: 18px;
    line-height: 60px;
}

.orange-btn {
    background-color: #FC6823;
    color: #FFFFFF;
}
.white-btn {
    background-color: #FFFFFF;
    color: #1797FE;
    border: 1px solid #1797FE
}
.orange-btn:hover {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #FFFFFF;
    color: #FA7137;
    border: 1px solid #FA7137
}
.white-btn:hover {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #1797FE;
    color: #FFFFFF;
    border: 1px solid #1797FE
}
.btn-shadow {
    filter: drop-shadow(0 4px rgba(0, 0, 0, 0.25));
}
.btn-shadow:hover {
    filter: none;
}
.w-100 {
    width: 100%;
}
.w-90 {
    width: 90% !important;
}
.w-80 {
    width: 80%;
}
.w-76 {
    width: 76%;
}
.w-70 {
    width: 70%;
}
.mx-50 {
    margin-left: 50px;
    margin-right: 50px;
}
.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}
.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.mx-0 {
    margin-left: 0;
    margin-right: 0;
}
.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.mt-40 {
    margin-top: 40px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mr-10 {
    margin-right: 10px !important;
}
.spacer-15 {
    height: 15px;
}
.spacer-25 {
    height: 25px;
}
.spacer-40 {
    height: 40px;
}
.spacer-70 {
    height: 70px;
}
.boxed {
    min-height: 54px;
    width: 100%;
    line-height: 31px;
    padding: auto 10px;
}
#mainBanner {
    min-height: 650px;
}
#mainBanner img {
    max-height: 543px;
    position: absolute; 
    right: 0; 
    bottom: -137px;
}
#mainBanner .text {
    max-width: 546px;
    padding: 30px 0;
}
@media screen and (max-width: 1280px) {
    #mainBanner img {
        max-width: 43%;
    }
}
@media screen and (max-width: 991px) {
    #mainBanner img {
        max-width: 43%;
    }
    #mainBanner .b2 {
        font-size: 13px;
    }
    #mainBanner .h2 {
        font-size: 24px;
        line-height: 32px;
        margin-top: 0;
        margin-bottom: 0;
    }
    #mainBanner .b1 {
        font-size: 15px;
        line-height: 23px;
    }
    #mainBanner .a-btn-lg {
        width: 100%;
        display: block;
        margin-bottom: 8px;
        margin-top: 8px;
    }
    #mainBanner .text {
        max-width: none
    }
    #mainBanner img {
        max-width: 100%;
        position: relative;
        display: block;
        bottom: -35px;
        margin: auto;
    }
}

#mainBanner-Borong-CMP {
    min-height: 520px;
}
#mainBanner-Borong-CMP img {
    max-height: 543px;
    position: absolute; 
    right: 0; 
    bottom: -50px;
    width: 850px;
}
#mainBanner-Borong-CMP .text {
    max-width: 546px;
    padding: 30px 0;
}

#mainBanner-Borong-CMP .h2 {
    font-size: 32px;
}

@media screen and (max-width: 1399px) {
    #mainBanner-Borong-CMP img {
        max-width: 58%;
    }
}
@media screen and (max-width: 1199px) {
    #mainBanner-Borong-CMP img {
        max-width: 43%;
    }
}
@media screen and (max-width: 991px) {
    #mainBanner-Borong-CMP img {
        max-width: 43%;
    }
    #mainBanner-Borong-CMP .b2 {
        font-size: 13px;
    }
    #mainBanner-Borong-CMP .h2 {
        font-size: 24px;
        line-height: 32px;
        margin-top: 0;
        margin-bottom: 0;
    }
    #mainBanner-Borong-CMP .b1 {
        font-size: 15px;
        line-height: 23px;
    }
    #mainBanner-Borong-CMP .a-btn-lg {
        width: 100%;
        display: block;
        margin-bottom: 8px;
        margin-top: 8px;
    }
    #mainBanner-Borong-CMP .text {
        max-width: none
    }
    #mainBanner-Borong-CMP img {
        max-width: 100%;
        position: relative;
        display: block;
        bottom: -35px;
        margin: auto;
    }
}




@media screen and (max-width: 991px) {
    #brand .h3 {
        font-size: 15px;
        width: 77%;
        margin: auto;
        margin-top: 40px;
    }
    .brands {
        margin: 16px auto !important;
    }
    .brands-slider {
        max-width: 100%;
        margin: 20px auto;
    }
    .brands-slider .slick-track {
        left: 160px;
    }
    .brands-slider img {
        height: 31px !important;
        width: auto !important;
        margin: 20px 10px !important;
    }
    .brands-slider .slick-next {
        top: 18%;
        right: -10px;
        height: 32px;
        width: 32px;
    }
    /* .brands-slider .slick-prev {
        top: 18%;
        left: -10px;
        height: 32px;
        width: 32px;
    } */
    .brands-slider .slick-next:before {
        font-size: 20px;
    }
    .brands-slider .slick-prev:before {
        font-size: 20px;
    }
}

/* @media (max-width: 1024px) {
    .brands-slider .slick-next {
        right: -15px;
    }
    .brands-slider .slick-prev {
        left: -15px;
    }
}
@media (max-width: 992px) {
    .brands-slider img {
        padding: 0;
    }            
}
@media (max-width: 992px) {
    .brands-slider {
        max-width: 50%;
    }            
}
@media (max-width: 425px) {
    .brands-slider {
        max-width: 70%;
    }
} */
#servicesOffered {
    padding: 60px 0;
    min-height: 435px;
}
#servicesOffered img {
    height: 80px;
    width: 80px;
}
.great-deals {
    background-color: #F7F7F7;
}
.deals-slider, .featured-slider {
    max-width: 90%;
}
.deals-slider .slick-next {
    right: -30px;
}
.deals-slider .slick-prev {
    left: -30px;
}
.deals-slider .slick-next:before {
    font-size: 20px;
}
.deals-slider .slick-prev:before {
    font-size: 20px;
}
.featured-slider .slick-next {
    right: -30px;
}
.featured-slider .slick-prev {
    left: -30px;
}
.featured-slider .slick-next:before {
    font-size: 20px;
}
.featured-slider .slick-prev:before {
    font-size: 20px;
}
@media (max-width: 991px) {
    .deals-slider {
        max-width: 300px;
    }
}
@media (max-width: 991px) {
    .featured-slider {
        max-width: 300px;
    }
}
@media (max-width: 991px) {
    .categories-slider {
        max-width: 100%;
    }
}
#newsLinks img {
    min-height: 235px;
    max-height: 235px;
    margin: auto;
    padding: 60px;
}
.m-testimonials {
    min-height: 750px;
}
.m-testimonials .img-container {
    background-color: #FFBC8B;
    width: 563px;
    height: 482px;
}
.m-testimonials .img-container img:nth-child(1) {
    height: 100%;
    width: 100%;
    z-index: 2;
    mix-blend-mode: lighten;

}
.m-testimonials .img-container img:nth-child(2) {
    height: 430px;
    z-index: 3;
    position: absolute;
    bottom: 0;
    left: 130px;
}
.m-testimonials .test-card {
    position: absolute;
    top: 100px;
    left: 500px;
}
@media (max-width: 1400px) {
    .m-testimonials .b1 {
        font-size: 17px;
        line-height: 28px;
    }
    .m-testimonials .test-card {
        left: 500px;
    }
}
@media (max-width: 1199px) {
    .m-testimonials {
        min-height: 600px;
    }
    .m-testimonials .img-container {
        width: 460px;
        height: 360px;
    }
    .m-testimonials .img-container img:nth-child(2) {
        height: 320px;
    }
    .m-testimonials .b1 {
        font-size: 15px;
        line-height: 26px;
    }
    .m-testimonials .test-card {
        top: 28px;
        left: 400px;
    }
}
@media (max-width: 991px) {
    .m-testimonials .text {
        font-size: 15px;
        line-height: 26px;
    }
    .m-testimonials .test-card {
        top: 28px;
        left: 280px;
    }
    .m-testimonials .img-container img:nth-child(2) {
        left: 20px;
    }
}
@media (max-width: 800px) {
    .m-testimonials {
        min-height: 600px;
    }
    .m-testimonials .img-container img:nth-child(2) {
        opacity: 40%;
    }
    .m-testimonials .test-card {
        top: 28px;
        left: 50px;
        padding-right: 10px;
        z-index: 5;
    }
}
.bg-banner-orange {
    background-color: #FF9649;
    background-image: url("/images/homepage/blurred-background-store-shopping-mall.png");
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-size: cover;
}
.related-category-slider .title {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
    margin: 20px 0;
    max-width: 200px;
}
.related-category-slider .card-lg, .card-sm {
    border-radius: 4px;
    padding: 10px;
}
.related-category-slider .card-lg {
    max-width: 420px;
}
.related-category-slider .card-sm {
    max-height: 200px;
    max-width: 200px;
}
.related-category-slider .slick-next {
    right: -60px;
}
.related-category-slider .slick-prev {
    left: -50px;
}
.related-category-slider .slick-next:before {
    font-size: 20px;
}
.related-category-slider .slick-prev:before {
    font-size: 20px;
}
.more-products-bg {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 800px; 
    z-index: -1;
    background-color: #F7F7F7;
}
.floating-cubes {
    position: relative;
    top: 0px;
    left: 0px;
}
.floating-cubes img:nth-child(1) {
    position: absolute;
    top: -130px;
    left: 90px;
}
.floating-cubes img:nth-child(2) {
    position: absolute;
    top: -130px;
    left: 1130px;
}
.floating-cubes img:nth-child(3) {
    position: absolute;
    top: 300px;
    left: -90px;
}
.floating-cubes img:nth-child(4) {
    position: absolute;
    top: 420px;
    left: 300px;
}
.floating-cubes img:nth-child(5) {
    position: absolute;
    top: 400px;
    left: 1130px;
}
@media (max-width: 991px) {
    .more-product {
        max-width: 300px;
    }
}
.promo-banner {
    width: 90%;
    max-width: 1200px;
    max-height: 284px;
    margin: 70px auto 15px;
}
.promo-slider {
    max-width: 90%;
    margin: 20px auto;
}
.promo-slider .slick-next {
    right: -30px;
}
.promo-slider .slick-prev {
    left: -30px;
}
.promo-slider .slick-next:before {
    font-size: 20px;
}
.promo-slider .slick-prev:before {
    font-size: 20px;
}
@media (max-width: 991px) {
    .promo-slider {
        max-width: 300px;
    }
}
.promo-banner-small {
    max-height: 284px;
    margin: 70px auto 15px;
}
/* @media (max-width: 991px) {
    .promo-card {
        max-width: 330px;
        margin: auto;
    }
} */
.category-card {
    height: 353px;
    width: 337px;
    margin: 20px;
    position: relative;
}
.category-card img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    position: absolute;
    z-index: -1;
}
.category-card a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* .product-card {
    text-align: left !important;
    background-color: #FFFFFF; 
    border-radius: 12px; 
    padding: 10px; 
    height: 440px !important; 
    width: 220px !important; 
    position: relative;
    cursor: pointer;
    color: #000000;
}

.product-card .b2 {
    color: #000000 !important;
    font-weight: 400 !important;
}

.product-card .price-reference {
    font-weight: 400 !important;
}

.product-card:hover {
    color: #000000;
}
.card-border {
    border: 1px solid !important;
    border-color: #E5E5E5 !important;
}
.product-card img {
    height: 200px; 
    width: 200px;
}
.product-card .right {
    margin-left: 10px;
}
.product-card .price-reference {
    position: absolute; 
    bottom: 40px;
    width: 90%;
}
.product-card .name {
    font-weight: 400; 
    margin-top: 26px; 
    max-height: 67px; 
    overflow: hidden;
}
.product-card .reduced-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--primary-color);
}
.product-card .quantity-unit {
    position: absolute;
    right: 10px;
    top: 26px;
    color: #000000;
} */
@media screen and (max-width: 991px) {
    .b3 {
        font-size: 13px;
    }
    /* .product-card .reduced-price {
        font-size: 15px;
    }
    .product-card .name {
        margin-top: 0; 
        max-height: 40px; 
        font-size: 13px;
    }
    .product-card {
        height: 276px !important; 
        width: 160px !important; 
        padding: 8px; 
    }
    .product-card img {
        height: 140px; 
        width: 140px;
    }
    .product-card .quantity-unit {
        position: relative;
        right: 0;
        top: 0;
        font-size: 13px !important;
    }
    .product-card .price-reference {
        bottom: 18px;
    }
    .product-card .right {
        margin-left: 0;
    } */
    .category-card {
        height: 180px !important;
        width: 180px !important;
        margin: 8px;
        position: relative;
    }
    .a-btn-fat {
        height: 40px;
        width: 150px;
        font-size: 13px;
        line-height: 40px;
    }
}
.supplier-card {
    text-align: left !important;
    background-color: #FFFFFF; 
    border-radius: 12px; 
    padding: 10px; 
    height: 222px !important; 
    width: 568px !important; 
    margin: 5px;
    border: 1px solid;
    border-color: #C4C4C4;
    cursor: pointer;
}
.supplier-card img {
    height: 100px !important;
    width: 100px !important;
}
.supplier-card .product-images {
    position: relative;
    width: 201px;
    height: 201px;
    display: inline-block;
}
.supplier-card img:nth-child(1) {
    position: absolute;
    top: 0px;
    left: 0px;
}
.supplier-card img:nth-child(2) {
    position: absolute;
    top: 0px;
    left: 101px;
}
.supplier-card img:nth-child(3) {
    position: absolute;
    top: 101px;
    left: 0px;
}
.supplier-card img:nth-child(4) {
    position: absolute;
    top: 101px;
    left: 101px;
}
.supplier-card .description {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    max-width: 330px;
}
.supplier-card .name {
    margin-bottom: 9px;
}
.supplier-card .rating {
    margin-bottom: 10px;
}
.supplier-card .minimum-purchase {
    margin-bottom: 15px;
}
.supplier-card .top-category {
    height: 50px;
    line-height: 16px;
    overflow: hidden;
}
.supplier-card .top-category a {
    color: #1797FE;
    text-decoration: underline;
    font-weight: 400;
}
@media screen and (max-width: 991px) {
    .supplier-card {
        height: 201px !important;
        width: 328px !important;
    }
    .supplier-card img {
        height: 32px !important;
        width: 32px !important;
    }
    .supplier-card .product-images {
        width: 60px;
        height: 60px;
    }
    .supplier-card img:nth-child(1) {
        position: absolute;
        top: 0px;
        left: 0px;
    }
    .supplier-card img:nth-child(2) {
        position: absolute;
        top: 0px;
        left: 31px;
    }
    .supplier-card img:nth-child(3) {
        position: absolute;
        top: 31px;
        left: 0px;
    }
    .supplier-card img:nth-child(4) {
        position: absolute;
        top: 31px;
        left: 31px;
    }
    .supplier-card .name {
        margin-bottom: 0;
        font-size: 13px;
    }
    .supplier-card .rating {
        margin-bottom: 0;
        font-size: 11px;
    }
    .supplier-card .minimum-purchase {
        margin-bottom: 0;
        font-size: 11px;
    }
    .supplier-card .top-category {
        height: 27px;
        line-height: 15px;
        font-size: 11px;
    }
    .supplier-card .description {
        margin-left: 10px;
        max-width: 200px;
    }
    .supplier-card .h3 {
        line-height: 19.5px;
    }
    .supplier-card .promotion {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 11px;
    }
    .supplier-card .text {
        font-size: 11px;
    }
    .supplier-card .location {
        font-size: 11px;
    }
}
/*
.container {
    max-width: 1280px;
    width: 100%;
    padding-right: 35px;
    padding-left: 35px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 1152px) {
    .container {
        max-width: 1152px;
        padding-right: 24px;
        padding-left: 24px;
    }
}
@media screen and (max-width: 991px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
*/
.brands {
    margin: 30px auto;
}
.brands img {
    height: 66px;
    margin: 20px 42px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}
.services-card {
    width: 288px;
    height: 212.2px;
    margin: 30px;
}
.services-card img {
    height: 60px;
    width: 60px;
}
.services-card div:nth-child(2) {
    margin: 10px auto;
    line-height: 24px;
    font-size: 15px;
    min-height: 50px;
}
.services-card div:nth-child(3) {
    min-height: 60px;
}
.small-banner {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 15px;
    width: 100%;
    line-height: 50px;
    background-color: #FEEFE9;
    height: 54px;
    text-align: center;
    margin-top: 10px;
}
.promo-announcement .announce{
    height: 150px;
    width: 550px;
    background-color: #6DB1E9;
    color: #000000;
    text-align: center;
    border-radius: 12px;
    margin: 7.5px;
    display:table;
    z-index: 3 !important;
    cursor: pointer;
}

/* .promo-card {
    width: 550px;
    min-height: 468px;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid;
    border-color: #E5E5E5;
    margin: 8px 10px;
    position: relative;
    min-height: 505px;
}

.promo-card .promo-header {
    display: flex; 
    justify-content: space-between; 
    align-items: baseline; 
    flex-wrap: wrap; 
    padding-right: 24px;  
    padding-left: 24px;
}

.promo-card .promo-body {
    width: 100%; 
    padding-right: 24px;  
    padding-left: 24px;
}

.promo-card .promo-footer {
    position: absolute; 
    bottom: 0px; 
    width: 100%; 
    padding-right: 50px;
}

.promo-card img:first {
    max-width: 548px;
    max-height: 156px;
    object-fit: cover;

}
.promo-card .promo-images img {
    max-width: 150px;
    max-height: 150px;
} */
#productDetail .detail-layout ::-webkit-scrollbar {
    width: 3px;
  }
#productDetail .detail-layout ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
#productDetail .detail-layout ::-webkit-scrollbar-thumb {
    background: #E0E0E0;
}
#productDetail .product-images {
    max-height: 404px;
    overflow-y: auto;
    cursor: grab;
}

#productDetail .product-images img {
    height: 85px;
    width: 85px;
    margin-bottom: 16px;
    border-radius: 8px;
}

#productDetail .product-main-image img {
    height: 400px;
    width: 400px;
    border-radius: 8px;
    margin: 0 16px 16px;
    border: 1px solid;
    border-color: #E5E5E5;
}
#productDetail .product-info {
    width: 460px;
    max-width: 460px;
    border-radius: 8px;
    border: 1px solid;
    border-color: #E5E5E5;
    padding: 16px;
    /* min-height: 470px; */
    margin-bottom: 16px;
}
#productDetail .other-info {
    max-width: 187px;
}
#productDetail .supplier-info,.delivery-info {
    /* width: 187px; */
    border-radius: 8px;
    border: 1px solid;
    border-color: #E5E5E5;
    padding: 16px;
    margin-left: 16px;
    margin-bottom: 13px;
    /* max-width: 460px; */
    display: flex;
    flex-direction: column;
}
#productDetail .blue-tag {
    background-color: #1797FE;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
    padding: 5px 10px;
    margin-left: 20px;
}
#productDetail .product-quantity {
    height: 40px;
    width: 123px;
    border-color: #E0E0E0;
    border-radius: 4px;
    font-size: 13px;
    line-height: 42px;
    text-align: center;
    -moz-appearance: textfield;
    margin: 0;
    float: left;
    margin-right: 12px;
}
#productDetail .product-quantity::-webkit-outer-spin-button, 
.product-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#productDetail .grey-box {
    width: 40px;
    height: 40px;
    background-color: #E0E0E0;
    border-radius: 4px;
    font-size: 35px;
    text-align: center;
    line-height: 42px;
    float: left;
    margin-right: 12px;
    cursor: pointer;
}
#productDetail .orange-box {
    width: 45px;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 42px;
    border-radius: 4px;
    cursor: pointer;
}
#productDetail .supplier-info > img:first-child {
    height: 120px;
    width: 120px;
    margin: 15px auto;
    border-radius: 8px;
}
#productDetail .supplier-info {
    text-align: center;
}
#productDetail .detail-layout {
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap
}
#productDetail .premium-tag {
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap;
    padding-top: 15px;
}
#peekAtCategories img {
    max-width: 202px;
    max-height: 202px;
}
#faq img {
    max-width: 168px; 
    max-height: 127px; 
    position: absolute; 
    bottom: -146px;
}
@media screen and (max-width: 1251px) {
    #productDetail .other-info {
        max-width: 979px;
        width: 100%;
        display: flex;
    }
    #productDetail .supplier-info {
        width: 30%
    }
    #productDetail .delivery-info {
        width: 70%
    }
}
@media screen and (max-width: 991px) {
    #productDetail .other-info {
        display: block;
    }
    #productDetail .supplier-info {
        text-align: left;
    }
    #productDetail .detail-layout {
        flex-direction: column;
        align-items: center;
    }
    #productDetail .product-main-image {
        order: -1
    }
    #productDetail .product-images {
        order: 0
    }
    #productDetail .product-main-image img {
        height: 200px;
        width: 200px;
        margin: 4px;
    }
    #productDetail .product-images img {
        height: 56px;
        width: 56px;
        float: left;
        margin: 6px;
    }
    #productDetail .product-info {
        width: 100%;
        border: none;
        padding: 0;
        /* min-height: 470px; */
    }
    #productDetail .product-info .h3 {
        font-size: 18px;
        /* min-height: 470px; */
    }
    #productDetail .blue-tag {
        float: right;
        padding: 1px 10px;
    }
    #productDetail .supplier-info,.delivery-info {
        width: 100% !important;
        margin-left: 0;
    }
    #productDetail .supplier-info {
        margin-top: 16px;
        flex-direction: row;
    }
    #productDetail .a-btn-add-cart {
        position: fixed;
        bottom: 0;
        left: 8px;
        margin: 8px;
        width: calc(100% - 32px);
        z-index: 2;
    }
    #productDetail .fixed-button-mobile {
        background-color: #FFFFFF;
        z-index: 1;
        /* Commenting this in case it affects JP and other themes */
        /* height: 56px; */
        position: fixed;
        bottom: 0;
        width: 100%;
        border-top: 1px solid #E5E5E5;
        padding: 16px;
        left: 0px;
    }
    #productDetail .supplier-info > img:first-child {
        height: 56px;
        width: 56px;
        margin: 8px;
        border-radius: 8px;
    }
    #productDetail .premium-tag {
        padding-top: 5px;
    }

    /* .promo-card {
        min-height: 500px;
    }

    .promo-card .promo-images img {
        max-width: 90px;
        max-height: 90px;
    }

    .promo-card .promo-header {
        padding-right: 16px;  
        padding-left: 16px;
    }

    .promo-card .promo-body {
        padding-right: 16px;  
        padding-left: 16px;
    }

    .promo-card .promo-footer {
        padding-right: 30px;
    }

    .promo-card .promo-header .h4 {
        font-size: 15px;
        margin-bottom: 0;
        line-height: 16px;
    }

    .promo-card .promo-header .b3 {
        padding-bottom: 15px;
    }    
    #sourcesByBusiness .h3 {
        font-size: 15px !important;
    } */

    #servicesOffered .h3 {
        font-size: 15px !important;
        width: 77% !important;
        margin: auto !important;
    }
    .services-card {
        margin: 20px;
        height: auto;
    }
    #servicesOffered img {
        height: 60px;
        width: 60px;
    }
    #supplierList {
        padding-top: 0;
        padding-bottom: 0 !important;
        margin-bottom: 40px;
    }
    #supplierList .h3 {
        font-size: 15px;
    }
    #peekAtCategories .h3 {
        font-size: 15px;
        margin: 0;
    }
    #peekAtCategories img {
        width: 180px;
        height: 180px;
    }
    @media screen and (max-width: 991px) {
        #peekAtCategories .categories-slider {
            font-size: 13px;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }           
        #peekAtCategories .slick-track > div {
            margin-right: 16px;
        }
    }
    .link-std {
        font-size: 13px;
    }
    #faq .h23 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    #faq .b1 {
        font-size: 15px;
        line-height: 23px;
    }
    #faq img {
        max-width: 142px; 
        max-height: 158px; 
        position: absolute; 
        top: -15px;
        right: -83px;
    }
    #faq .faq-link {
        text-align: left;
        width: 100%;
    }
    #signupBanner .h2 {
        font-size: 24px;
        line-height: 31.2px
    }
    .promo-announcement .announce{
        height: 218px;
        width: 328px;
        margin: 8px;
    }
    .small-banner {
        font-size: 13px;
        width: 100%;
        line-height: 16.9px;
        height: 70px;
        text-align: center;
        margin-top: 0;
        padding: 20px;
        margin-bottom: 8px;
    }
}
.supplier-card button {
    position: absolute;
    bottom: 16px;
    right: 16px;
    border-radius: 4px;
    background-color: #FFFFFF;
    font-size: 13px;
    height: 40px;
    width: 91px;
    border-width: 1px;
    border-color: #FC6823;
    border-style: solid;
}
.social-media img {
    height: 30px !important;
    width: 30px !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px !important;
    cursor: pointer;
}

#productByCategory .category-list li {
    padding-top: 20px !important;
}

.search-box button {
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: #000000;
    padding: 6px;
}

.search-box input {
    border-color: #A3A3A3;
    width: 223px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid;
    padding-left: 45px;
    font-size: 13px;

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.crumb {
    margin-bottom: 16px !important;
    margin-top: 16px !important;
    overflow: auto !important;
    white-space: nowrap !important;
}

.crumb a {
    margin-right: 8px;
}

.crumb span:not(.current) {
    margin-right: 8px;
}

.product-list-layout {
    display: flex; 
    justify-content: unset;
    flex-wrap: wrap; 
    gap: 12px;
}

.deals-for-you {
    justify-content: unset;
}

.product-slider .slick-track > div {
    margin-right: 16px;
}

@media screen and (min-width: 1400px) {
    .product-slider .slick-track{
        width: 100% !important;
    }
}

@media screen and (max-width: 1399px) {     
    .product-list-wrapper {
        margin: 0 90px; 
    }
}

@media screen and (max-width: 991px) {     
    .product-list-wrapper {
        margin: 0px 0px !important; 
    }
    #productList .h3 {
        font-size: 15px;
        margin: 0;
    }
    #faq .faq-link {
        text-align: center;
    }
}

.push-body-toleft #Header {
    z-index: 2 !important;
}

.chip-pre-order{
    background-color: #BBFAA4;
    border-radius: 100vw;
    padding: 5px 13px;
    font-size: 11px;
    color: #221F1E;
    display: inline-block;
    font-weight: 500;
}

.stock-count{
    color: #777777;
    font-size: 14px;
}

.product-out-of-stock{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 15px;
    border: 1px solid #FE5454;
    border-radius: 100vw;
    width: fit-content;
}

.product-out-of-stock img{
    width: 17px;
    height: auto;
}

.product-out-of-stock p{
   color: #A4A4A4;
   font-size: 13px;
   font-weight: 500;
}
