/* The grid: Four equal columns that floats next to each other */
.tabGalColumn {
    float: left;
    width: 25%;
    padding: 10px;
}

/* Style the images inside the grid */
.tabGalColumn img {
    opacity: 0.8; 
    cursor: pointer; 
}

.tabGalColumn img:hover {
    opacity: 1;
}

/* Clear floats after the columns */
.tabGalRow:after {
    content: "";
    display: table;
    clear: both;
}

/* The expanding image container (positioning is needed to position the close button and the text) */
.tabGalContainer {
    position: relative;
    display: none;
}

/* Expanding image text */
#tabGalImgtext {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 20px;
}

/* Closable button inside the image */
.tabGalClosebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}