/*!
* PT. IMAJIKU CIPTA MEDIA
*/

/* =GLIGHTBOX GALLERY
------------------------------------------------------------ */
.galightbox-gallery {
    position: relative;
}

.galightbox-images,
.galightbox-video,
.galightbox-album {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    overflow: hidden;
}

.galightbox-thumb {
    display: none;
}

/*gallery icon*/
.galightbox-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 40px;
    width: 40px;
    border: 2px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    z-index: 10;
}

.galightbox-icon i,
.galightbox-icon svg {
    font-size: 16px;
    color: #ffffff;
}

.galightbox-images img,
.galightbox-video img,
.galightbox-album img {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.galightbox-images:hover img,
.galightbox-video:hover img,
.galightbox-album:hover img {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    filter: brightness(60%);
    -webkit-filter: brightness(60%);
    -moz-filter: brightness(60%);
    object-fit: cover;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
}

.galightbox-images:hover .galightbox-icon,
.galightbox-video:hover .galightbox-icon,
.galightbox-album:hover .galightbox-icon {
    background-color: red;
    border-color: red;
}

@media only screen and (max-width : 1199.98px) {

    /*glightbox icon mobile visible*/
    .glightbox-mobile .goverlay {
        background: rgba(0, 0, 0, .92);
    }

    .glightbox-clean .gprev {
        top: 45%;
        left: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .glightbox-clean .gnext {
        top: 45%;
        right: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .gclose svg,
    .gnext svg,
    .gprev svg {
        width: 20px;
    }

}