/*
 * inwendo CPT Image Gallery - Styles
 *
 ********************************************************/

.iw_cpt_image_gallery {
    margin-left: -15px;
    margin-right: -15px;
}

.iw_cpt_image_gallery .desktop {
    display: block;
}

.iw_cpt_image_gallery.direct_mobile_style .desktop {
    display: none;
}

.iw_cpt_image_gallery .mobile {
    display: none;
}

.iw_cpt_image_gallery.direct_mobile_style .mobile {
    display: block;
}

.iw_cpt_image_gallery .iw_col_1_2 {
    float: left;
    width: 50%;
}

.iw_cpt_image_gallery .iw_col_1_1 {
    float: left;
    width: 100%;
}

.iw_cpt_image_gallery .iw_col_1_4 {
    width: 25%;
    float: left;
}

.iw_cpt_image_gallery .iw_cpt_image_gallery_image {
    width: 50%;
    float: left;
    padding: 15px;
    overflow: hidden;
    height: 210px;
    position: relative;
}

.iw_cpt_image_gallery .iw_col_1_1 .iw_cpt_image_gallery_image {
    width: 25%;
}

.iw_cpt_image_gallery .iw_cpt_image_gallery_image.full {
    width: 100%;
    height: 420px;
}

.iw_cpt_image_gallery .iw_col_1_4 .iw_cpt_image_gallery_image {
    width: 100%;
}

.iw_cpt_image_gallery .iw_cpt_image_gallery_image img {
    cursor: pointer;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.iw_cpt_image_gallery.no_lightbox .iw_cpt_image_gallery_image img {
    cursor: initial;
}

.iw_cpt_image_gallery .iw_cpt_image_gallery_clearfix::after {
    content: "";
    clear: both;
    display: table;
}

@media screen and (max-width: 860px) {
    .iw_cpt_image_gallery .desktop {
        display: none;
    }

    .iw_cpt_image_gallery .mobile {
        display: block;
    }
}


/** START Lightbox */

#iw_cpt_image_gallery_lightbox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
}

#iw_cpt_image_gallery_lightbox .close {
    margin-top: 40px;
    margin-right: 40px;
    position: absolute;
    top: 0;
    right: 0;
    transform: scale(2);
    cursor: pointer;
}

#iw_cpt_image_gallery_lightbox .content_wrapper {
    position: absolute;
    top: 125px;
    bottom: 125px;
    left: 0;
    right: 0;
    cursor: pointer;
}

#iw_cpt_image_gallery_lightbox .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 125px;
    right: 125px;
}

#iw_cpt_image_gallery_lightbox .counter {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    font-size: 25px;
}

#iw_cpt_image_gallery_lightbox .content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    #iw_cpt_image_gallery_lightbox .content {
        left: 75px;
        right: 75px;
    }
}

@media screen and (max-width: 860px) {
    #iw_cpt_image_gallery_lightbox .content {
        left: 35px;
        right: 35px;
    }

    #iw_cpt_image_gallery_lightbox .content_wrapper {
        top: 75px;
        bottom: 75px;
    }

    #iw_cpt_image_gallery_lightbox .counter {
        bottom: 30px;
    }

    #iw_cpt_image_gallery_lightbox .close {
        margin-top: 30px;
        margin-right: 30px;
    }
}

@media screen and (max-width: 420px) {
    #iw_cpt_image_gallery_lightbox .content {
        left: 15px;
        right: 15px;
    }
}


/** END Lightbox */
