/* specials_image-lightbox-for-gallery.css */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}
.lb-overlay.is-open {
    opacity: 0.9;
    visibility: visible;
}
.lb-box {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}
.lb-box.is-open {
    display: block;
}
.lb-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 70px;
}
.lb-content {
    position: relative;
}
.lb-loaded-content {
    border: 0;
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
    line-height: 0;
}
.lb-image {
    display: block;
    max-width: calc(100vw - 140px);
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
}
.lb-title,
.lb-current {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    line-height: 1.4;
}
.lb-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
}
.lb-current {
    white-space: nowrap;
}
.lb-close,
.lb-next,
.lb-previous {
    content: '';
    position: fixed;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: var(--grey6);
}
.lb-close {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    -webkit-mask: url(../dateien/icons/icon_xmark.svg) no-repeat center / contain;
    mask: url(../dateien/icons/icon_xmark.svg) no-repeat center / contain;
}
.lb-previous {
    top: 50%;
    left: 20px;
    -webkit-mask: url(../dateien/icons/icon_angle-right.svg) no-repeat center / contain;
    mask: url(../dateien/icons/icon_angle-right.svg) no-repeat center / contain;
    transform: scaleX(-1);
}
.lb-next {
    top: 50%;
    right: 20px;
    -webkit-mask: url(../dateien/icons/icon_angle-right.svg) no-repeat center / contain;
    mask: url(../dateien/icons/icon_angle-right.svg) no-repeat center / contain;
}
.lb-close:hover,
.lb-next:hover,
.lb-previous:hover,
.lb-close:focus-visible,
.lb-next:focus-visible,
.lb-previous:focus-visible {
    background-color: #fff;
}
.lb-close[hidden],
.lb-next[hidden],
.lb-previous[hidden] {
    display: none !important;
}
body.lb-lock {
    overflow: hidden;
}