.product_boxn {
              width: -webkit-fill-available;
    overflow: hidden;
    display: grid;
    grid-template-columns: 77% auto;
    align-items: center;
    margin: 2px;
    background: white;
    color: black;
    border-radius: 4px;
    border: 1px solid #e2e2e2;
	
	
}

.add_to_cart {
    width: fit-content;
    text-align: center;
    background: #03A9F4;
    color: white;
    padding: 8px 13px;
    font-size: 14px;
    border-radius: 3px;
}

.product_boxn img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
}
.product_boxn .pr_nm {
       padding: 3px 10px;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    display: grid;
}

.product_boxn .pr_mrp {
        display: inline-block;
    padding: 3px 0px 0px;
    font-weight: 500;
    color: gray;
    font-size: 13px;
    text-decoration: line-through;
}

.product_boxn .pr_am {
      display: inline-block;
    padding: 3px 10px 0px;
    font-weight: 600;
    font-size: 16px;
    color: black;
}


.product_details p{        font-weight: 600;
    padding: 4px 0px;
    font-size: 13px;
    margin: 0px;}
	
	.imagetoshow img {    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    left: 50%;
    transform: translate(-50%,-50%);}
	
	.out_of_stock {    background: white;
    color: #616161;
    font-size: 11px;
    border: 1px solid #d2d2d2;}