.expandible-container {margin-bottom: 2rem;}
.carouselWrap{
    max-height:360px;
    overflow: hidden;
    margin-bottom:10px;
    /* height: 298px; */
    box-sizing: border-box;
}
.carousel {
    width: calc(100% - 60px);
    left: 30px;
    overflow: hidden;
}

/*moved*/
.carousel .product-compact {
    box-sizing:border-box;
    overflow: hidden;
    box-shadow:0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.carousel .product-compact:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.carousel .product-compact .catName {
    width: 100%;
    padding: 3px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    display: block;
}


.carousel .product-compact .imgDiv {
    margin: 5px auto;
    text-align: center;
    position: relative;
}

.carousel .product-compact .imgDiv img {
    max-width: 100%;
    max-height: 125px;
}

.carousel .product-compact .highlight-flags {
    position: absolute;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.carousel .product-compact .highlight-flags span{
    display:inline-block;
    padding: 0 3px;
    background:white;
}

.carousel .product-compact h3,
.carousel .product-compact .price-and-detail {
    line-height: 1.1em;
    margin:0;
    text-align: center;
}

.carousel .product-compact h3{
    font-size: 1rem;
}
.carousel .product-compact h3 a {
    font-weight: 100;
    color: #666;
    font-size:1rem;        
}

.carousel .product-compact .discount-message {
    font-size: .8em;
    color: #2a600f;
    display: inline-block;
    line-height: 1em;
    margin-bottom: 5px;
    padding: 0 3px;
}

.carousel .product-compact .price-and-detail{
    font-size: 1.2rem;
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    left: 0;
    background: white;
    padding: 2px;
}

.product-compact .price-and-detail .noStock {
    font-size:1rem;
}
/* end moved */

.carousel .carousel .carousel-link-box {
    background: #ccc;

}
.carousel .carousel-link-box a {
    display:block;
    height: 100%;
    width: 100%; 
    color: white;
    font-size:1.5em;
}

.carousel .carousel-link-box img {
    margin-top: 50px;
}

.carouselWrap .arrow-left, .carouselWrap .arrow-right {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    opacity: .5;
    cursor: pointer;
}

.carouselWrap .arrow-left {
    border-right: 25px solid #ccc;
    left: 2px;
}
.carouselWrap .arrow-right {
    border-left: 25px solid #ccc;
    right: 2px;
}
.expandible-container .section-lead p {
    font-size:1rem;font-weight:normal;display:none;
}

.carousel .product.slick-slide {
    height: 300px;
    padding:0;
    margin:0 15px 8px 2px;
}

.carousel .product .imgDiv {
    margin: 5px auto;
    text-align: center;
    position: relative;
}

.carousel .product .imgDiv img {
    max-width: 100%;
    max-height: 125px;
}

.carousel .product.slick-slide h3 {
    width:90%;
    margin:0 auto;
    line-height:1.2;
    font-size:1rem;
}

.carousel .product .catName {
    display:block;
}

.carousel .product .mob-catname {
    display:none;
}

.carousel .product h3,
.carousel .product .price-and-detail {
    line-height: 1.1rem;
    margin:0;
    text-align: center;
}

.carousel .product h3{
    font-size: 1rem;
}
.carousel .product h3 a {
    font-weight: 100;
    color: #666;
    font-size:1.1rem;    
}

.carousel .product .price-and-detail{
    font-size: 1.2rem;
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    left: 0;
    background: white;
    padding: 2px;
}
.carousel .product .discount-message {
    font-size: .8rem;
    color: #2a600f;
    display: inline-block;
    line-height: 1em;
    margin-bottom: 5px;
    padding: 0 3px;
    margin-top:0.5em;
}

.carousel .product .price {
    font-size:1.7rem;
}
  

/*moved*/
@media screen and (min-width:800px) {
    .carousel .product-compact .discount-message {
        font-size: .7em;
    }

    .expandible-container {
        display: flex;
        flex: 1 2 auto;
        margin: 2em 0;
        background:#f5f5f5;
        padding:1em 0;
        flex-direction:row;
    }
    .expandible-container .section-lead {
        height:auto;
        text-align:left;
        margin:1em;
        max-width: 400px;
        background:inherit;
        font-weight:bold;
        font-size:1.5rem;
        width:20%;
    }

    .expandible-container .section-lead p {
        display:block;
    }
    
    .expandible-container .carouselWrap {
        width:80%;
    }
    
}