.rot-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index:10000;
}
.rot-lightbox[aria-hidden="false"] {
    display: flex;
}
.rot-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: calc(90% - var(--admin-bar-height));
    text-align: center;
    top: var(--admin-bar-height);
}
#rot-lightbox-caption {
    color: white;
    margin-top: 0.4rem;
    font-size: 0.85em;
}
.rot-lightbox img {
    max-width: 100%;
    max-height: 80vh;
}
.rot-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
.rot-lightbox-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
}
.rot-lightbox-btn {
    background: transparent;
    box-shadow: none;
    border: none;
    color: var(--white);
    font-size: 1.7em;
    display: inline-flex;
    align-items: center;
    column-gap: 0.6em;
}
.rot-lightbox-prev:before{
	content:'zurück';
	content: 'zurück';
    font-size: 1rem;
	top: -.2em;
    position: relative;
}
.rot-lightbox-next:after{
	content:'nächstes';
	content: 'nächstes';
    font-size: 1rem;
	top: -.2em;
    position: relative;
}