@font-face{
    font-family: "BeVietnamPro-Bold";
    src: url(font/BeVietnamPro-main/fonts/webfonts/BeVietnamPro-Bold.woff2) format("woff2");
}

#popup {
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

#popup.show {
    opacity: 1;
    
}
.overlay {
    position: fixed;
    background-color: rgba(200, 200, 200, 0.80);
    top: 0;
    left: 0;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    padding: 0px;
    animation: ani 1s infinite;
    animation-delay: 0s;
}
.modal {
    position: fixed;
    font-family: BeVietnamPro-Bold;
    width:auto;
    left: 50vw;
    top: 50vh;
    border-radius: 5px;
    opacity: 0;
    transform: translate(-50%, -50%);
    padding: 2rem;
    background: rgb(55,57,67);
    color: #444;
    animation:ani 1s infinite;
    animation-delay: 0s;
}

.textPopUpDsgvo{
    text-align: center;
}

#dsgvo-container{
    background-color: rgba(200, 200, 200, 0.5);
    height: 45vh; 
    overflow:auto;
    padding: 2%;
    margin: 2% 0;
}

.button-container{
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 5%;
    justify-content: space-between;
    justify-items: center;
}

.button-deny, .button-acept{
    font-family: "BeVietnamPro-Bold";
    width: auto;
    color: #aaa;
    border-radius: 500px;
    background-color: rgb(70,75,78);;
    padding: 1%;
}

.modal-back {
    color: #aaa;
    font-size: 100%;
    width: auto;
    text-decoration: none;
    margin:auto;
   
}

.modal-back:hover, #acceptbtn:hover{
    color: white;
    text-decoration: underline;
}

.button-deny{
    margin-right: 2%;
}
#acceptbtn {
    background-color: rgb(70,75,78);
    border: 0px;
    color: white;
    font-size: 100%;
    width: auto;
    text-decoration: none;
    margin:auto;
}

@keyframes ani {
    0% {
        opacity: 100%;
    }
   
    100% {
        opacity: 100%;
    }
}