.productImageContent{
  position: relative;
  width: 100%;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.productImageContent img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.productImageContent .uploadImagebutton{
  position: relative;
  width: 150px;
  height: 40px;
  border-radius: 10px;
  background-color: #fe8911;
  border: 2px solid #fe8911;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: .3s ease;
}
.productImageContent .uploadImagebutton:hover{
  background-color: transparent;
  color: #fe8911;
}
.productImageContent .uploadImagebutton input{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
.custom-top-28{
  top: 28% !important;
}