 
/* Override bootstrap column paddings */
 
.tz-gallery .lightbox img {
    width: 100%; 
    position: relative;
}

.tz-gallery .lightbox:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;  
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
    background: url(../images/icon/search.png);
    background-size: cover;
    width: 30px;
    height: 30px;
    filter: brightness(0.5) invert(1);
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgb(183 137 76 / 70%);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

 