/**
 * @version     1.0.3
 * @package     com_gagallery
 * @subpackage  mod_gagallery
 * @copyright   2021 Glenn Arkell
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Glenn Arkell <glenn@glennarkell.com.au>
 */

.table{
    width: 100%;
    margin-bottom: 18px;
}

.table tr{
    border: none;
}

.table td, .table th{
    padding: 8px;
    line-height: 18px;
    text-align: left;
    vertical-align: top;
    border: none;
    border-top: 1px solid #ddd;
}

table.modgagallery td.dispImg {
    padding: 30px 20px;
}

table.modgagallery td.dispImg figcaption {
    padding-top: 10px;
    background-color: #ddd;
    font-size: 1.3em;
    font-weight: heavy;
}
table.modgagallery td.dispImg div.image:after {
    width: 100%; height:100%;
    background:rgba(0,0,0,0.6);
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
}
table.modgagallery td.dispImg div.image:hover {
    opacity: 0.4;
    transition: all 1s;
    -webkit-transition: all 1s;
}

.zoom {
	padding: 1px;
	transition: transform .2s; /* Animation */
	height: auto;
	margin: 0 auto;
}

.zoom:hover {
	transform: scale(1.3); /* 130% */
}

