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

/* CSS for lens */
.cloudzoom-lens {
    border: 3px solid #888;
    width: 2rem;
    height: 2rem;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
    cursor: crosshair;
    background: #fff;
    z-index:9999;
}
/* CSS for zoom window. */
.cloudzoom-zoom {
    border: 1px solid #888;
    width:2rem;
    height: 2rem;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
	z-index: 9999;
}
/* CSS for zoom window in 'inside' mode. */
.cloudzoom-zoom-inside {
    border: none;
    box-shadow: none;
}

/* 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;
}
@media (max-width:490px) {
	.cloudzoom-lens{display: none!important;}
	.cloudzoom-zoom{display: none!important;}
	.cloudzoom-zoom-inside{display:none!important;}
	.cloudzoom-caption{display:none!important;}
}