.popup .overlay{
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 171, 232,0.5);
      
        z-index: 1;
        display:block;
}

.popup .popup-inhalt h1{
        font-size: 2rem;
        font-weight: 600;
}
/*.popup .popup-inhalt{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position:absolute;
        top:17%;
        left:50%;
        transform:translate(-50%, -50%) scale(1);
        background:#fff;
        -webkit-box-shadow: 0px 0px 17px #000000;-moz-box-shadow: 0px 0px 17px #000000;box-shadow: 0px 0px 17px #000000;
        width: auto;
        min-width: 370px;
        height: auto;
        z-index: 2;
        text-align:center;
        padding: 36px 20px 20px 20px;
        box-sizing: border-box;
        border-radius: 6px;
        border-color: rgba(0, 171, 232,1);
        border: 2px solid  rgba(0, 171, 232,1);
        
}
        */
        .popup .popup-inhalt {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: absolute;
                left: 50%;
                top: 159px;
                transform: translate(-50%, -15%) scale(1);
                background: #fff;
                -webkit-box-shadow: 0px 0px 17px #000000;
                -moz-box-shadow: 0px 0px 17px #000000;
                box-shadow: 0px 0px 17px #000000;
                width: auto;
                z-index: 2;
                text-align: center;
                padding: 20px 0px 0px 0px;
                box-sizing: border-box;
                border-radius: 6px;
                border-color: rgba(0, 171, 232, 1);
                border: 2px solid rgba(0, 171, 232, 1);
                min-width: 90%;
            }
        .popup-inhalt img {
        width: 90%;
        max-width: 656px;
        }
.popup .close-btn{
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        background:  rgba(0, 171, 232,1);
        font-size: 25px;
        font-weight: 600;
        line-height: 25px;
        text-align: center;
        border-radius: 10%;
        color: #fff;
}

.popup.active .overlay{
        display:none;
}
.popup.popup.active .popup-inhalt{
        transition: all 800ms ease-in-out;
        transform:translate(-50%, -50%) scale(0);
}