.popupWrapper {
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 1000;
}


.popupShadow {
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.popupWindow {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.popupDescription {
    color: #bebebe;
    position: absolute;
    text-align: center;
    min-height: 1px;
    width: 700px;
    left: 50%;
    margin-left: -350px;
    max-height: 70px;
    overflow: hidden;
    /* calc not working with scriptmerger!
       https://gitlab.sgalinski.de/typo3/scriptmerger/issues/23 */
    bottom: 5%;
    margin-bottom: 80px;
}

.lightboxElements {
    height: 100%;
    width: 100%;
}

.lightboxElements li.active {
    display: block;
}
.lightboxElements li {
    display: none;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 0;
}
.lightboxElements li > img {
    max-width: 1000px;
    display: inline-block;
}

.sensitiveArea {
    cursor: pointer;
    height: 50px;
    left: 50%;
    position: absolute;
    bottom: 5%;
    width: 50px;
}

.lbArrow {
    color: #fff;
    cursor: pointer;
    opacity: 0.75;
    position: absolute;
    z-index: 50;
    text-align: center;
    background-color: #ff9929;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    height: 3rem;
    line-height: 3.4rem;
    width: 3rem;
}


.lbArrowRight {
    margin-left: 55px;
}
.lbArrowLeft {
    margin-left: -105px;
}
.lbClose {
    margin-left: -25px;
    font-size: 1.5rem;
}

.lbArrowRight::before {
    content: "c";
}
.lbArrowLeft::before {
    content: "b";
}
.sensitiveArea:hover .lbArrow{
    opacity: 1;
}
.lbClose:before {
  content: "q";
}

@media only screen and (max-width: 740px) {
    .sensitiveArea {
        cursor: pointer;
        height: 50px;
        left: 50%;
        position: absolute;
        bottom: 20px;
        width: 50px;
    }

    .popupDescription {
        bottom: 90px;
        min-height: 1px;
        width: 100%;
        left: auto;
        padding: 0 20px;
        max-height: none;
        overflow: visible;
        margin-left: 0;
        box-sizing: border-box;
        font-size: 14px;
        margin-bottom: 0px;
    }
}
