/*
 Cloud Zoom CSS. (c)2012-2015 Star Plugins.
*/

/* CSS for lens */
.cloudzoom-lens {
    border:2px solid #888;
    width:100px;
    height:100px;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
    cursor:crosshair;
    z-index: 9999;
}
/* CSS for zoom window. */
.cloudzoom-zoom {
    border:1px solid #888;
    width:500px;
    height:200px;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40); 
    background-color:#ffffff;   
    vertical-align:middle; text-align:center;
	z-index: 9999;
}

/* CSS for zoom window in 'inside' mode. */
.cloudzoom-zoom-inside {
    border:none;
    box-shadow:none;
	z-index: 9999;
    cursor:pointer;
    /*width: 200px !important;*/
}

/* 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;
}

.section {
        clear:both;
        margin-top:20px;
        display:table;
        border-top:1px solid #ccc;
    }
    
.cloudzoom-lens-thick {
    border:8px solid #f90;
    width:100px;
    height:120px;
    border-radius: 10px;
    box-shadow: -0px -0px 20px rgba(0,0,0,0.50);
    cursor:crosshair;
}

.cloudzoom-zoom-thick {
     border:8px solid #f90;
     border-radius: 10px;
     box-shadow: -0px -0px 20px rgba(0,0,0,0.50);
}

.cloudzoom-thumb{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cloudzoom-thumb:hover{
	-webkit-transform: scale(1.1);
  	-moz-transform: scale(1.1);
  	-o-transform: scale(1.1);
  	transform: scale(1.1);
}

.image-wrap {
    border:1px solid #ccc; display:inline-block;line-height:0;margin-top:20px;margin-bottom:10px;
}

#fullsize img {
    border:1px solid #ccc;
}

.fancybox-title {
    text-align: center;
}
