.product-box{
    /* padding-top: 30px; */
}
.product-box .product-item{
    transition: 0.3s;
    position: relative;
    cursor: pointer;
    margin: 5px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    overflow: hidden;
  }
.product-box .product-item:hover{
    box-shadow: 0 0 9px #0000003b;
  }
.product-box .product-item .product_thumb{
} 
.product-box .product-item .product_thumb a img{
    max-width: 100%;
} 
.product-box .product-item .product_thumb .primary_img img{
    display: block;
    opacity: 1;
    visibility: visible;
    border-bottom: 2px solid #efefef;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.product-box .product-item .label_product {
    position: absolute;
    top: 5px;
    right: 0;
    padding: 3px 5px;
    text-align: center;
    background: var(--primary);
    border-radius: 10px;
}
.product-box .product-item .label_product span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: block;
}
.action_links{
    display: none;
}
.product-box .product-item .product_content {
    padding: 5px 5px;
    background-color: #fff;
}
.product-box .product-item .product_content h4 {
    line-height: 20px;
    display: block;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
    
}
.product-box .product-item .product_content h4 a{
    text-decoration: none;
    color: var(--black);
}
.product_name{
    display: block;
    height: 40px;
    overflow: hidden;
}
.product-box .product-item .product_content h4 a:hover {
    color: #fdb813;
}
.product-box .product-item .product_content .price_box {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}
.product-box .product-item .product_content .price_box span.current_price {
    color: #f30;
    font-weight: 600;
    font-size: 17px;
}
.product-box .product-item .product_content .price_box span.old_price {
    text-decoration: line-through;
    font-weight: 400;
    font-size: 14px;
    margin-left: 10px;
}

#clockdiv {
    font-family: GalaxieCondensedMedium,Arial,sans-serif;
    color: white;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 20px;
    text-shadow: 2px 2px 4px #732d27;
    margin-right: 10px;
}
#clockdiv > div {
    border-radius: 3px;
    display: inline-block;
}
#clockdiv div > span {
    padding: 0 10px;
    border-radius: 3px;
    background: #e73a2a;
    display: inline-block;
}
.product_btn2{
    background: #ebeced;
    color: #36454f;
    width: 100%;
    font-size: 15px;
    text-wrap: nowrap;
}
.product_btn2:hover{
    background: #36454f !important;
    color: #ffffff !important;
}
.product_btn1{
    background: #ebeced;
    margin-right: 5px;
    color: #f48849;
    width: 100%;
    font-size: 15px;
    text-wrap: nowrap;
}
.product_btn1:hover{
    background: #f26e21 !important;
    color: #ffffff !important;
}
.price .current_price{
        font-weight: bold;
    }
@media (max-width: 572px){
    #clockdiv{
        justify-content: center;
    }
    .product_btn2{
        background: #ebeced;
        color: #36454f;
        width: 100%;
        font-size: 11px;
        padding: 5px 0;
        text-wrap: nowrap;
    }
    .product_btn1{
        background: #ebeced;
        margin-right: 5px;
        color: #f48849;
        width: 100%;
        font-size: 11px;
        padding: 5px 0;
        text-wrap: nowrap;
    }
    .price .current_price{
        font-size: 13px;
    }
    .price .old_price{
        font-size: 13px;
    }
}
@media (max-width: 1400px) and (min-width: 992px){
    .product_btn2{
        background: #ebeced;
        color: #36454f;
        width: 100%;
        font-size: 13px;
        padding: 5px 0;
        text-wrap: nowrap;
    }
    .product_btn1{
        background: #ebeced;
        margin-right: 5px;
        color: #f48849;
        width: 100%;
        font-size: 13px;
        padding: 5px 0;
        text-wrap: nowrap;
    }
}