/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Start : zoom image */
* {box-sizing: border-box;}

#prayergardenplotimage {
	max-width: 50%;
	float: left;
}

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

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

.img-zoom-result {
  border: 1px solid #d4d4d4;
  /*set the size of the result div:*/
  width: 50%;
  height: 400px;
  float: left;
}

/* End: zoom image */