
#module-higallery-gallery .masonry { /* Masonry container */
    -webkit-column-count: 4;
  -moz-column-count:4;
  column-count: 4;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
   margin: 1.5em;
    padding: 0;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: .85em;
}
#module-higallery-gallery .item {
    display: inline-block;
    /* background: #fff; */
    /* padding: 1em; */
    margin: 0 0 1.5em;
    width: 100%;
	-webkit-transition:1s ease all;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor:zoom-in;
    /* box-shadow: 2px 2px 4px 0 #ccc; */
}

#module-higallery-gallery .item a {
    cursor:zoom-in;
}
/* #module-higallery-gallery .item:hover img{
    box-shadow: 3px 3px 8px 0 #8b8b8b;
} */

#module-higallery-gallery .item img{
    max-width:100%;
    transition: all .3s ease;
}

@media only screen and (max-width: 320px) {
    #module-higallery-gallery .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 321px) and (max-width: 768px){
    #module-higallery-gallery .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1200px){
    #module-higallery-gallery .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}
@media only screen and (min-width: 1201px) {
    #module-higallery-gallery .masonry {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}


#module-higallery-gallery .galeria__head {
    width: 100%;
    display: -ms-flexbox !important;
    display: flex !important;
    /* margin: 10px 0px; */
    padding: 0px;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: sticky;
    background-color: #fff;
    z-index: 1000;
}

#module-higallery-gallery .galeria__head button {
    position: relative;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    outline: none;
    transition: 0.2s;
	border: none;
	background: none;
	height: 50px;
	margin: 10px;
    border: 1px solid #efefef;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

@media only screen and (max-width: 769px) {
    #module-higallery-gallery .galeria__head button {
        height:auto;
        padding: 8px 10px;
        line-height: 1;
        margin-top: 0;
        font-size: 11px;
    }
}

#module-higallery-gallery .galeria__head button:hover {
    border-color: #000;
}

#module-higallery-gallery .galeria__head button::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 0px;
    opacity: 0;
    height: 2px;
    background: #000;
    transition: 0.2s;
}

#module-higallery-gallery .galeria__head button.active::after {
    width: 100% !important;
    opacity: 1 !important;
}
