/*
 * inwendo Core - Lightbox - Styles
 *
 ********************************************************/

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

#iw_core_lightbox .close {
    margin-top: 40px;
    margin-right: 40px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    cursor: pointer;
    z-index: 100;
}

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

#iw_core_lightbox .content {
    display: flex;
    flex-direction: column;
    padding: 0 125px;
    height: 100%;
    justify-content: center;
    width: 100%;
}

#iw_core_lightbox .description {
    width: 100%;
    text-align: center;
    font-size: 25px;
    padding-top: 30px;
}

#iw_core_lightbox .titel {
    padding-bottom: 15px;
}

#iw_core_lightbox .counter {
    padding-top: 15px;
}

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

@media screen and (max-width: 1200px) {
    #iw_core_lightbox .content {
        padding: 0 75px;
    }
}

@media screen and (max-width: 860px) {
    #iw_core_lightbox .content {
        padding: 0 35px;
    }

    #iw_core_lightbox .content_wrapper {
        top: 75px;
        bottom: 75px;
    }
    #iw_core_lightbox .close {
        margin-top: 30px;
        margin-right: 30px;
    }
}

@media screen and (max-width: 420px) {
    #iw_core_lightbox .content {
        padding: 0 15px;
    }
}
