.pop_up {
  color: black !important;
  position: fixed;
  background: #0009;
  height: 100%;
  width: 100%;
  z-index: 10000;
  top: 0;
  overflow: scroll;
  animation: pop_up_fade .5s ease;
}
#Impressum {
  display: none;
}
#datenschutz {
  display: none;
}
.pop_up_message_impress {
  position: fixed;
  transform: translate(-50%, -50%);
  height: auto;
  min-height: 400px;
  width: 40%;
  min-width: 500px;
  background: white;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  animation: pop_up_rising .2s ease;
}
.pop_up_message_dsgvo {
  position: fixed;
  transform: translate(-50%, -50%);
  height: auto;
  padding-bottom: 30px;
  width: 40%;
  min-width: 500px;
  max-height: 90%;
  background: white;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  animation: pop_up_rising .2s ease;
}
@keyframes pop_up_rising {
  from {top: 1000px;}
  to {top: 50%;}
}
@keyframes pop_up_fade {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes xButton_anim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.x_button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
}
.x_button:hover {
  transform: scale(1.1);
}
.xBar1 {
  width: 30px;
  position: fixed;
  right: 6px;
  top: 20px;
  transform: rotate(45deg);
  border: 2px black solid;
}
.xBar2 {
  width: 30px;
  position: fixed;
  right: 6px;
  top: 20px;
  transform: rotate(-45deg);

  border: 2px black solid;
}
.modal_text_field {
  width: 100%;
  height: 100%;
  padding-top: 5px;
}
.modal_text_field h {
  font-size: 18px;
  font-weight: 500;
  margin: 10px;
  margin-top: 15px;
}
.modal_text_field p {
  font-size: 15px;

  padding: 0;
  margin: 4px 0px 0 10px;
}
.dsgvo_p p {
  font-size: 12px;
  margin-right: 50px;
}
.dsgvo_p a {
  font-size: 12px;
  text-decoration: none;
  color: black;

}
.dsgvo_link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 680px) {
  .pop_up_message_dsgvo {
    min-width: 300px;
    font-size: 9px;
  }
  .pop_up_message_impress {
    min-width: 300px;
    font-size: 9px;
  }
}

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

}
