#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;
}


/* Inhalt */

.cb-lb-content {
    max-width: 92vw;
    max-height: 95vh;
    text-align: center;
}


/* Bild */

.cb-lb-image {
    display: block;

    max-width: 92vw;
    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    margin: 0 auto;
}


/* Text unter dem Bild */

.cb-lb-text {
    display: block;

    max-width: 92vw;

    margin: 10px auto 0;

    color: white !important;

    text-align: left;

    line-height: 1.3;
}


/* Titel */

.cb-lb-title {
    color: white !important;

    font-size: 17px;
    font-weight: bold;

    margin-bottom: 3px;
}


/* Metadaten */

.cb-lb-meta {
    color: white !important;

    font-size: 14px;
}


/* 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-image {
        max-width: 96vw;
        max-height: 80vh;
    }

    .cb-lb-text {
        max-width: 96vw;
    }

    #cb-lightbox button {
        font-size: 32px;
    }

    #cb-lightbox .cb-lb-close {
        font-size: 38px;
    }
}