.list-photos-gallery {
    list-style: none;
    padding-left: 0;
}
.list-photos-gallery > .row > .photo-gallery-item {
    margin-bottom: 10px;
}
.list-photos-gallery > .row > .photo-gallery-item .gallery_image_wrapper {
    overflow: hidden;
    position: relative;
}
.list-photos-gallery > .row > .photo-gallery-item .gallery_image_wrapper img {
    border: 1px solid #ddd;
    width: 100%;
}
.list-photos-gallery > .row > .photo-gallery-item .gallery_image_wrapper:after {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.25s ease-in-out;
}
.list-photos-gallery
    > .row
    > .photo-gallery-item
    .gallery_image_wrapper:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    bottom: 0;
    color: #fff;
    content: "\f044";
    display: inline-block;
    font: normal normal normal 14px/1 Font Awesome\6 Free;
    font-size: 18px;
    font-weight: 400;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-rendering: auto;
    top: 48%;
    transform: translate(0);
    transition: opacity 0.25s ease-in-out;
    z-index: 3;
}
.list-photos-gallery > .row > .photo-gallery-item .gallery_image_wrapper:hover {
    cursor: pointer;
}
.list-photos-gallery
    > .row
    > .photo-gallery-item
    .gallery_image_wrapper:hover:after,
.list-photos-gallery
    > .row
    > .photo-gallery-item
    .gallery_image_wrapper:hover:before {
    opacity: 1;
}
