/*!
* PT. IMAJIKU CIPTA MEDIA
*/

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

.hc-galightbox-gallery a {
    width: 100%;
    overflow: hidden;
}

.hc-galightbox-gallery img {
    width: 100%;
}

.hc-galightbox-images,
.hc-galightbox-video,
.hc-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;
}

.hc-galightbox-thumb {
    display: none;
}

/*gallery icon*/
.hc-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;
}

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

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

.hc-galightbox-images:hover img,
.hc-galightbox-video:hover img,
.hc-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);
}

.hc-galightbox-images:hover .hc-galightbox-icon,
.hc-galightbox-video:hover .hc-galightbox-icon,
.hc-galightbox-album:hover .hc-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) !important;
    }

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

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

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

}