/*
 Cloud Zoom CSS. (c)2012-2015 Star Plugins.
     height:284px;
*/

/* CSS for lens */
.cloudzoom-lens {
    border-radius: 5px;
    border:1px solid #808080;
    width: 100%;
    height:35%;
    box-shadow: 8px 8px 8px rgba(0,0,0,0.40);
    cursor:pointer;
    z-index: 9999;
}




/* CSS for zoom window. */
.cloudzoom-zoom {
    border-radius: 15px;
    border:1px solid #000b49;
   
    box-shadow: -0px 10px 10px rgba(0,0,0,0.40);
	z-index: 9999;
}
/* CSS for zoom window in 'inside' mode. */
.cloudzoom-zoom-inside {


    border:1px solid #000b49;
    box-shadow:none;
	z-index: 9999;

}

/* CSS for captions */
.cloudzoom-caption {
    display:none;   /* CSS captions should be hidden initially */
    text-align:center;
    vertical-align:bottom;
    background-color:rgba(0,0,0,0.25);
    color:#909090;
    font-weight:500;
    padding:0px;
    font-family: sans-serif;
    font-size:12px;
    padding: 3px;
   
}

/* A blank image */
.cloudzoom-blank {
    background-image:url(/images/blank.gif);
}

/* The animated ajax loading image */
.cloudzoom-ajax-loader {
    background-image:url(ajax-loader.gif);
    width:32px;
    height:32px;
}

