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

#img-zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  /*set the size of the lens:*/
  width: 50px;
  height: 50px;
}

.img-zoom-result {
  display: none;
  /*border: 1px solid #d4d4d4;*/
  /*set the size of the result div:*/
  width: 200px;
  height: 200px;
  position: absolute;
    /*top:0;*/
    right: -200px;
    z-index: 10;
}

.img-zoom-container:hover #myresult {
    display: block !important;
    /*position: relative;
    top:0;
    right: 20px;*/
}
