<style>
* {box-sizing: border-box;} 

.img-zoom-container {
  position: relative;
}

.img-zoom-lens {
  position: absolute;
  border: 1px solid #b9a11a;
  border-radius: 80px;
  /*set the size of the lens:*/
  width: 150px;
  height: 150px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  position:fixed;
  bottom: 150px;
  /*set the size of the result div:*/
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
}
</style>
