
/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
	border: 1px solid #888;
	margin:-1px;	/* Set this to minus the border thickness. */
	background-color: #fff;	
	cursor: pointer;    
}

/* This is for the title text. */
.cloud-zoom-title {
	font-family:Arial, Helvetica, sans-serif;
	position:absolute !important;
	background-color:#000;
	color:#fff;
	padding:3px;
	width:100%;
	text-align:center;	
	font-weight:bold;
	font-size:10px;
	top:0px;
}

/* This is the zoom window. */
.cloud-zoom-big {
	border: 1px solid #ccc;
	overflow:hidden;
    margin-top: 3px;
}

/* This is the loading message. */
.cloud-zoom-loading {
	color:white;	
	background:#222;
	padding: 3px;
	border:1px solid #000;
}

.cloud-zoom-big {
    background-repeat:no-repeat;
    background-color:#fff;
}

.cloud-zoom img {
    width: 500px;
    height: 500px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.cloud-zoom-gallery-wrapper {
    width: 100px;
    height: 500px;
    float: left;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: nowrap;    
}

.cloud-zoom-gallery-wrapper ul {
    margin: 0;
    padding: 0;
}

.cloud-zoom-gallery-wrapper li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.cloud-zoom-gallery-wrapper::-webkit-scrollbar {
    width: 16px;
}

.cloud-zoom-gallery-wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px #ccc;
    border-radius: 8px;
}

.cloud-zoom-gallery-wrapper::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 8px;
}

.cloud-zoom-gallery-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.active-image:after {
    position: relative;
    display: inline-block;
    content: "";
    width: 5px;
    height: 10px;
    left: -5px;
    top: -35px;
    background: transparent url(/content/img/icon/cloud-zoom-gallery-arrow_5x10.png) no-repeat;

}

.cloud-zoom-gallery img {    
    width: 80px;    
    border: 1px solid #ccc;
    box-sizing: border-box;
    cursor: pointer;
}

.active-image img {        
    border: 3px solid #fcab42;
}

.inactive-image img {        
    border: 1px solid #ccc;
}