/* 

                                            ------
                                            GESTALTUNG PopUp Fenster "2 Splt."
                                            ------

*/


/* .popup-cb {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000000;
    }
    
    .popup-fenster {
        display: flex;
        flex-direction: column;
        width: 40%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        overflow: hidden;
    }
    
    .close-cb {
        display: flex;
        justify-content: flex-end;
    }
    
    .close-cb img:hover {
        cursor: pointer;
    }
    
    .close-cb img {
        width: 22px;
    }
    
    .popup-cb.close {
        display: none;
    }
    
    .popup-inner-cb {
        display: flex;
        flex-direction: row;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 0px;
        margin-top: 10px;
        border: solid 4px #fff;
    }
    
    .popup-inner1 {
        width: 50%;
    }
    
    .popup-inner2 {
        width: 50%;
        text-align: center;
        margin: auto;
        padding: 0 15px;
    }
    
    .popup-inner1 img {
        width: 100%;
        vertical-align: middle;
    }
    
    .popup-inner2 h2,
    .popup-inner2 h3,
    .popup-inner2 p {
        font-family: Montserrat, Helvetica, Arial, sans-serif;
        color: #fff;
        margin: 0;
        padding: 8px 0;
    }
    
    .popup-inner2 h2 {
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 6px;
        color: #9cb73a;
        text-transform: uppercase;
    }
    
    .popup-inner2 h3 {
        font-size: 16px;
        font-weight: 500;
    }
    
    .popup-inner2 p,
    .popup-inner2 br {
        font-size: 14px;
        font-weight: 400;
    }
    
    .popup-inner2 img {
        background-color: #fff;
        padding: 10px;
        border-radius: 10px;
    }
    
    @media screen and (max-width:1620px) {
        .popup-fenster {
            width: 75%;
        }
    }
    
    @media screen and (max-width:1120px) {
        .popup-fenster {
            width: 90%;
        }
    }
    
    @media screen and (max-width:900px) {
        .popup-fenster {
            width: 70%;
        }
        .popup-inner2 h2,
        .popup-inner2 h3,
        .popup-inner2 p {
            padding: 4px 0;
        }
        .popup-inner2 h2 {
            font-size: 16px;
        }
        .popup-inner2 h3 {
            font-size: 14px;
        }
        .popup-inner2 p,
        .popup-inner2 br {
            font-size: 12px;
        }
    }
    
    @media screen and (max-width:639px) {
        .popup-inner-cb {
            flex-direction: column;
        }
        .popup-inner1 {
            width: 100%;
        }
        .popup-inner2 {
            width: 90%;
            padding: 0;
        }
    } */


/* 

                                            ------
                                            GESTALTUNG PopUp Fenster "Stellenanzeige"
                                            ------

    */

.popup-cb {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999999;
    opacity: 0;
    animation: appear 500ms ease-in-out 1s forwards;
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.popup-fenster {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 800px;
    overflow: auto;
    opacity: 0;
    z-index: 1;
    animation: appear2 700ms ease-out 1.4s forwards;
}

@keyframes appear2 {
    0% {
        opacity: 0;
        margin-top: 20px;
    }

    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

.close-cb {
    display: flex;
    justify-content: flex-end;
}

.close-cb img:hover {
    cursor: pointer;
}

.close-cb img {
    width: 22px;
}

.popup-cb.close {
    display: none;
}

.popup-inner-cb {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    padding: 0px;
    margin-top: 10px;
}

.popup-inner1 {
    display: flex;
    width: 100%;
    /* background-image: url(../img/popup_urlaub.jpg);
        background-repeat: no-repeat;
        background-position: center; */
    text-align: center;
}

.popup-inner1 .inhalt {
    position: relative;
    height: 97%;
    width: 100%;
    border: 4px solid #0069a9;
    border-radius: 5px;
    margin: auto;
    overflow: hidden;
}

.popup-inner1 .text {
    background: #fff;
    color: #3c3c3b;
    padding: 40px;
    max-height: calc(100vh - 200px);
    overflow: auto;
}

.popup-inner1 .text::after {
    position: absolute;
    content: '';
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}


/* .popup-inner1 h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 33px;
    margin: 12px 0;
    padding: 0 20px;
} */

.popup-inner1 h2 {
    font-size: 15px;
    font-weight: 600;
    /* text-transform: uppercase; */
    line-height: 22px;
    margin: 12px 0;
    padding: 0 20px;
}

.popup-inner1 p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    padding: 0 20px;
}

.popup-inner1 h2 {
    font-size: 20px;
}

.popup-inner1 a {
    display: block;
    margin: auto;
    margin-top: 30px;
    padding: 5px 20px;
    border: 1px solid #0069a9;
    border-radius: 5px;
    color: #0069a9;
    text-decoration: none;
    width: 150px;
    transition: background-color 200ms ease-in-out;
}

.popup-inner1 a:hover {
    background-color: #0068a91a;
}

.pop-up-closer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

@media only screen and (max-width: 700px) {

    .popup-inner1 .text {
        padding: 20px;
    }
}