/* Gallery -----------------------------------------------------------------------------*/ .galleries {
margin: 15px auto;
width: 100%;
}
.galleries li {
width: 100px;
height: 100px;
float: left;
padding: 0;
margin-right: 20px;
margin-bottom: 20px;
}
.galleries li img {
float: left;
width: 100px;
height: 100px;
margin: 0;
padding: 0;
}
.imghover_gallery {
position: absolute;
background-image: url("../img/fancy_zoom.png");
background-color: transparent;
background-repeat: no-repeat;
background-position: center center;
width: 100px;
height: 100px;
float: left;
display: block;
opacity: 0;
}
.imghover_gallery:hover {
opacity: 0;
background-color: rgba(255, 255, 255, 0.3);
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}