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

/* CSS for lens */
.cloudzoom-lens {
    border:3px solid #ebebeb;
    width:100px;
    height:100px;
    cursor:crosshair;
    z-index: 9999;
}
/* CSS for zoom window. */
.cloudzoom-zoom {
    border:1px solid #ebebeb;
    width:600px;
    height:400px;
	z-index: 9999;
    border-radius: 4px;
}
/* CSS for zoom window in 'inside' mode. */
.cloudzoom-zoom-inside {
    border:none;
    box-shadow:none;
	z-index: 9999;
}
.cloudzoom-blank div:last-child {
   display: none!important
    
}
/* CSS for captions */
.cloudzoom-caption {
    display: none; /* CSS captions should be hidden initially */
    text-align: left;
    background-color: #fafafa;
    border-bottom: 1px solid #ebebeb;
    color: #231f20;
    padding: 10px;
    font-size: 14px;
}

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

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

