/* product card start */
.product-section-container {
    width: 100%;
    height: auto;
}
.product-section-container .product-card-content{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: auto;
    gap: 8px;
}
.product-section-container .product-card-content .product-card{
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding-bottom: 1rem;
}
.product-section-container .product-card-content .product-card:hover{
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
}
.product-section-container .product-card .product-card-a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: rgb(51, 51, 51);
    font-size: 14px;
    position: relative;
}
.product-section-container .product-card .product-card-a .main-img{
    width: 100%;
    height: 100%;
}
.product-section-container .product-card .product-card-a .product-card-free-delivery-logo{
    position: relative !important;
}
.product-section-container .product-card .product-card-a .product-card-free-delivery-logo img{
    height: 2rem !important;
    margin-bottom: 0.5rem;
}
.product-section-container .product-card .product-card-a .product-card-text-head{
    font-size: 14px;
    padding: 0rem 0 0 8px !important;
}
.product-section-container .product-card .product-card-a .product-card-text span{
    font-size: 18px;
    color: var(--themecolor);
    letter-spacing: -.56px;
    padding-left: 8px;
}
.product-section-container .product-card .product-card-a .product-card-text-2 span{
    font-size: 12px;
    line-height: 12px;
}
.product-section-container .product-card .product-card-a .product-card-text-2 .sold-count{
    color: #9e9e9e;
    padding: 0;
}
.product-section-container .product-card .product-card-a .product-card-rating{
    padding-left: 8px;
}
.product-section-container .product-card .product-card-a .product-card-rating i{
    color:rgba(0, 0, 0, 0.2);
    font-size: 14px !important;
}
.product-section-container .product-card .product-card-a .product-card-rating .rating-count{
    font-size: 12px !important;
    color: #9e9e9e;
    padding: 0 !important;
}
@media (max-width:1115px) {
    .product-section-container .product-card-content{
        grid-template-columns: repeat(5,1fr);

    }
}
@media (max-width:900px) {
    .product-section-container .product-card-content{
        grid-template-columns: repeat(4,1fr);
    }
}
@media (max-width:700px) {
    .product-section-container .product-card-content{
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width:650px) {
    .product-section-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width:500px) {
    .product-section-container .product-card-content{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 480px) {

}
@media (max-width:340px) {
    .product-section-container .product-card-content{
        grid-template-columns: repeat(1,1fr);
    }
}
/*end product card*/

/*start product rating star*/
 .stars-container {
     position: relative;
     display: inline-block;
     color: transparent;
     font-size: 14px;
 }
.stars-container:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '★★★★★';
    color: lightgray;
}
.stars-container:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '★★★★★';
    color: #ffb326;
    overflow: hidden;
}
.stars-0:after { width: 0; }
.stars-5:after { width: 5%; }
.stars-10:after { width: 10%; }
.stars-15:after { width: 15%; }
.stars-20:after { width: 20%; }
.stars-25:after { width: 25%; }
.stars-30:after { width: 30%; }
.stars-35:after { width: 35%; }
.stars-40:after { width: 40%; }
.stars-45:after { width: 45%; }
.stars-50:after { width: 50%; }
.stars-55:after { width: 55%; }
.stars-60:after { width: 60%; }
.stars-65:after { width: 65%; }
.stars-70:after { width: 70%; }
.stars-75:after { width: 75%; }
.stars-80:after { width: 80%; }
.stars-85:after { width: 85%; }
.stars-90:after { width: 90%; }
.stars-100:after { width: 100%; }
