
.productswrapper{
    
  width:100%;
  height:auto;
  /* min-height:260%; */
  margin:0%;
  padding-top:20px;
  padding-bottom:20px;
  color:black;


  display: flex;
  align-items: center;
  flex-flow: row wrap;
}



.product{

 position:relative;
 max-width:80%;
 overflow: auto;
 padding:5px;
margin:auto;
margin-top:10px;
box-shadow: 0 0 4px 1px #e4e4e4;
  /* background:blue; */

  display: flex;
  flex-direction: row;
    flex-wrap: wrap;
  position:relative;
}

.ProductImageArea{
  position:relative;
  width:48%;
  min-height:7cm;
  min-width:5cm;
  max-width:7cm;
  margin:auto;
  box-shadow:0px 1px 1px 1px whitesmoke;

  /* background:red; */

}

#productimage{

  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit: contain;
}

#descriptiondata{
  min-width:5cm;
  
  margin:auto;
  margin-top:1px;
  max-width:6cm;
  width:48%;
    padding:4px;

}

.MoreInfo{
  /* position:absolute;
  right:2%;
  bottom:2%; */
}

.ProductName{
  width:100%;
  font-weight:bold;
  margin:auto;
  /* background:cyan; */

}

.ProductDetails{
  width:100%;
  margin:auto;
  /* background:salmon; */

}