/* основной блок с картинкой */
.image_block_show {
  width: 640px;
  height: 480px;
}
.image_block_show #show-img {
  width: 100%;
  height: 100%;
  cursor: default;
}
.image_block_show iframe {
  width: 100%;
  display: none;
}

/* панель увеличения */
.image_block_slider .oozoo_showpanel {
    position: absolute;
    overflow: hidden;
    left: 650px;
    top: 0px;
    width: 535px;
    height: 531px;
    box-shadow: 3px 3px 15px #ccc;
    z-index: 5;
    border-radius: 5px;
}

/* область затемнения возле курсора */
.image_block_slider .oozoo_cursorlayer {
	position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    width: 350px;
    height: 350px;
    opacity: 0.2;
    border: 1px solid #ccc;
    cursor: crosshair;
}

.image_block_slider .icon-pager {
	position: absolute;
    top: 0;
    bottom: 25%;
    margin: auto 0;
    opacity: 0.6;
    border-radius: 100%;
    width: 14px;
    height: 34px;
    padding: 2px 12px;
	z-index: 1;
}
.image_block_slider .icon-pager:hover { opacity: 1; }
.image_block_slider #prev-img { transform: rotate(180deg); display: none; }
.image_block_slider #next-img { right: 0; }

.image_block_slider_small_img {
    width: 100%;
    margin-top: 10px;
    position: relative;
	display: inline-block;
}

.image_block_slider_small_img .small-container {

}

.image_block_slider_small_img .small-container div {
  position: relative;
}

.image_block_slider_small_img .small-container .show-small-img,
.image_block_slider_small_img .small-container .show-small-img-3d {
  width: 80px;
  height: 60px;
  margin: 2px;
  cursor: pointer;
  float: left;
  border: 1px solid #ddd;
  transition: 0.1s ease-in-out;
}
.image_block_slider_small_img .small-container .show-small-img img,
.image_block_slider_small_img .small-container .show-small-img-3d img {
	width: 100%;
	background-size: cover !important;
}
.image_block_slider_small_img .small-container .show-small-img:hover,
.image_block_slider_small_img .small-container .show-small-img-3d:hover {
	border: 1px solid red;
	transition: 0.1s ease-in-out;
}
.image_block_slider_small_img .small-container .show-small-img.active,
.image_block_slider_small_img .small-container .show-small-img-3d.active {
	border: 1px solid red;
	transition: 0.1s ease-in-out;
}

.image_block_slider_small_img .small-container .show-small-img:last-of-type { margin-right: 0; }