
.popup-offen {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #0000009e;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    /*animation: slideUp 0.5s ease-in;*/
}

.schnellanmeldung {
    display: flex;
    position: relative;
    background-color: white;
    width: 520px;
    height: 400px;
    border-radius: 20px;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    gap: 20px;
    justify-content: center;
    

}

.h2-popup {
    /* margin-top: 20px; */
    width: 80%;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
}

.input-schnellanmeldung {
    width: 90%;
    /* border: 1px solid; */
    padding: 8px;
    border: none;
    background-color: #80808014;
    border-radius: 7px;
    font-size: 16px;
}
.form-schnellanmeldung {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 8px;
}
.form-schnellanmeldung button {
    margin-top: 26px;
    width: 202px;
    cursor: pointer;
    background-color: orange;
    /* filter: drop-shadow(2px 4px 6px grey); */
    padding: 10px;
    border: none;
    color: white;
    border-radius: 5px;
}

.hide-popup{
    display: none;
}

#close-popup {
    position: absolute;
    font-size: 25px;
    color: #ffa500;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.popup {
    /* text-transform: uppercase; */
    /* display: flex; */
    justify-content: center;
    position: fixed;
    bottom: 50px;
    left: 0px;
    text-align: center;
    width: 101px;
    right: 0;
    font-size: 17px;
    padding: 12px 0px;
    /* font-weight: 800; */
    background-color: #181715;
    color: white;
    border-radius: 0;
    /* filter: drop-shadow(2px 4px 26px grey); */
    cursor: pointer;
    /* transform: rotate(90deg); */
    border: 1px solid #f39200;
    border-left: none;
}
.checkbox-inline {
    display: flex;
    align-items: center;
    width: 90%;
    gap: 8px;
    font-size: 10px;
}
input#datenschutz {
    width: 20px;
    height: auto;
}


@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@media (max-width: 500px){
    .form-schnellanmeldung {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        padding: 8px;
    }

    .input-schnellanmeldung {
        width: 90%;
        font-size: 16px;
        /* border: 1px solid; */
        padding: 8px;
        border: none;
        background-color: #80808014;
        border-radius: 7px;
    }
    .schnellanmeldung {
        display: flex;
        position: relative;
        background-color: white;
        width: 520px;
        height: 500px;
        border-radius: 20px;
        flex-direction: column;
        padding: 20px;
        align-items: center;
        gap: 35px;
        justify-content: center;
    }

}