#cb-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.92);

    align-items: center;
    justify-content: center;
}

#cb-lightbox.open {
    display: flex;
}


.cb-lb-content {
    position: relative;

    max-width: 92vw;
    max-height: 92vh;

    line-height: 0;
}


/* Bild */

.cb-lb-image {
    display: block;

    max-width: 92vw;
    max-height: 92vh;

    width: auto;
    height: auto;

    object-fit: contain;

    margin: 0;
}


/* Dunkler Verlauf am unteren Bildrand */

.cb-lb-gradient {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.65) 65%,
        rgba(0, 0, 0, 0.85) 100%
    );

    pointer-events: none;
}


/* Text auf dem Bild */

.cb-lb-text {
    position: absolute;

    left: 4%;
    right: 4%;
    bottom: 4%;

    color: white !important;

    text-align: left;

    line-height: 1.3;

    pointer-events: none;
}


/* Titel */

.cb-lb-title {
    color: white !important;

    font-size: 20px;
    font-weight: bold;

    margin-bottom: 5px;
}


/* Metadaten */

.cb-lb-meta {
    color: white !important;

    font-size: 15px;
}

/* Buttons */

#cb-lightbox button {
    position: fixed;

    border: 0;
    background: transparent;

    color: white;

    font-size: 40px;

    cursor: pointer;

    z-index: 1000000;
}


/* Schliessen */

#cb-lightbox .cb-lb-close {
    top: 15px;
    right: 25px;

    font-size: 45px;
}


/* Zurück */

#cb-lightbox .cb-lb-prev {
    left: 20px;
    top: 50%;

    transform: translateY(-50%);
}


/* Weiter */

#cb-lightbox .cb-lb-next {
    right: 20px;
    top: 50%;

    transform: translateY(-50%);
}


/* Mobile */
 
@media (max-width: 600px) {

    .cb-lb-content {
        max-width: 96vw;
        max-height: 90vh;
    }

    .cb-lb-image {
        max-width: 96vw;
        max-height: 90vh;
    }

    .cb-lb-text {
        left: 4%;
        right: 4%;
        bottom: 4%;
    }

    .cb-lb-title {
        font-size: 17px;
    }

    .cb-lb-meta {
        font-size: 13px;
    }

    .cb-lb-gradient {
        height: 40%;
    }

    #cb-lightbox button {
        font-size: 32px;
    }

    #cb-lightbox .cb-lb-close {
        font-size: 38px;
    }
}