/*
 Cloud Zoom CSS. (c)2012-2015 Star Plugins.
*/

/* CSS for lens */
.cloudzoom-lens {
  border: 3px solid #555;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 9999;
}

/* CSS for zoom window. */
.cloudzoom-zoom {
  width: 600px;
  height: 200px;
  background: white;
  box-shadow: 0 0 20px #ccc;
  z-index: 9999;
}

/* CSS for zoom window in 'inside' mode. */
.cloudzoom-zoom-inside {
  border: none;
  box-shadow: 0 0 20px #ccc;
  z-index: 9999;
  background: white;
}

/* CSS for captions */
.cloudzoom-caption {
  display: none; /* CSS captions should be hidden initially */
  text-align: left;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  font-family: sans-serif;
  font-size: 11px;

}

/* A blank image */
.cloudzoom-blank {
  background-image: url(../images/blank.png);
}

/* The animated ajax loading image */
.cloudzoom-ajax-loader {
  background-image: url(../images/ajax-loader.gif);
  width: 32px;
  height: 32px;
}

