.hoverZoom {
    position: relative;
    cursor: pointer;
    transition: all 200ms linear;
}
.hoverZoom:hover::after {
    visibility: visible;
}
.hoverZoom:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    content: "\1F50E \a Click to Enlarge";
    white-space: pre;
    z-index: 12;
    border-radius: 6px;
    text-align: center;
    color : #fff;
    font-weight: 500;
    display: flex;
    visibility: hidden;
    justify-content: center;
    align-items: center;
}
.hoverZoom:active {
    transform : scale(0.98)
}

#imageLightBox {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    z-index: 9999;
    padding: 5%;
    background: rgba(0,0,0,0.6);
    display: none;
    text-align: center;
}
#lightBoxImage {
    height:100%;
    object-fit: contain;
    border-radius: 6px;
}