.akg-gallery-grid { 
    display: flex; 
    flex-wrap: wrap; 
}
.akg-image-item img { 
    width: 100%; 
    height: auto; 
    cursor: pointer; 
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.akg-image-item img:hover {
/*     transform: scale(1.05); */
}
.akg-image-item {
    width: 33%;
    padding: 0px 12px;
    margin-bottom: 25px;
}
.akg-popup-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.8); 
    display: flex; 
    align-items: center;
    justify-content: center; 
    z-index: 9999;
}
.akg-popup-overlay img { 
    max-width: 90%; 
    max-height: 90%; 
    border-radius: 8px;
}
.akg-close { 
    position: absolute; 
    top: 20px; 
    right: 30px; 
    color: #fff; 
    font-size: 24px; 
    cursor: pointer; 
    font-weight: bold;
}
.akg-categories button {
    margin: 0 5px;
    padding: 8px 15px;
    border: none;
    background: #333;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}
.akg-categories button:hover {
    background: #555;
}
.center_load_more {
	text-align: center;
}
#akg-load-more {
    margin-top: 15px;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
	font-size: 18px;
	font-weight: 500;
}
#akg-load-more:hover {
    background: #005f8d;
	color: #fff;
}


#akg-loader {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    color: #0073aa;
    font-weight: 500;
}
#akg-load-more[disabled] {
    background: #ccc;
    cursor: not-allowed;
}
.akg-categories button.active {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.akg-categories button {
    margin: 5px;
    padding: 8px 14px;
    cursor: pointer;
    border: 1px solid #ccc;
/*     background: #f9f9f9; */
    transition: 0.3s;
}
.akg-categories button:hover {
/*     background: #e9e9e9; */
}

