/* ============================================================
   IRRIGATION BOJET — zoom.css (product image hover zoom)
   ============================================================ */

.conteneur_images {
  background: #fff;
  border: 1px solid rgba(61,84,136,.1);
  border-radius: 8px;
  height: 150px;
  margin: 0 auto;
  width: 150px;
  overflow: visible;
}

.div_image {
  float: left;
  height: 100px;
  margin: 0;
  width: 100px;
  text-align: center;
  z-index: -100;
  position: relative;
}

.div_image a {
  background: #fff;
  z-index: 100;
}

.div_image a:hover {
  background: #fff;
  z-index: 100;
  padding: 0;
  position: relative;
}

.det_img {
  border: none;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
}

.det_img:hover {
  background: transparent;
  border: 1px solid rgba(61,84,136,.2);
  border-radius: 6px;
  height: 180%;
  left: -10px;
  padding: 0;
  position: relative;
  top: 0;
  width: 180%;
  box-shadow: 0 8px 24px rgba(26,36,64,.15);
  z-index: 200;
}
